import { z } from "zod";
export declare const VersionInfoSchema: z.ZodObject<{
    appName: z.ZodNullable<z.ZodString>;
    appVersion: z.ZodNullable<z.ZodString>;
    releaseName: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type VersionInfo = z.infer<typeof VersionInfoSchema>;
