import { z } from "zod";
export declare const ZVersion: z.ZodObject<{
    type: z.ZodLiteral<"version">;
    version: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    type?: "version";
    version?: string;
}, {
    type?: "version";
    version?: string;
}>;
export type Version = z.infer<typeof ZVersion>;
