import * as z from "zod/mini"; export declare const FLOW_VERSION_PAYLOAD_GENERATION = "4"; /** * @deprecated Compatibility identifier for immutable generation-3 clients. * New clients must request `FLOW_VERSION_PAYLOAD_GENERATION`. */ export declare const PAGE_ONLY_FLOW_VERSION_PAYLOAD_GENERATION = "3"; export declare const FLOW_VERSION_PAYLOAD_GENERATIONS: readonly ["3", "4"]; export type FlowVersionPayloadGeneration = (typeof FLOW_VERSION_PAYLOAD_GENERATIONS)[number]; export declare const isFlowVersionPayloadGeneration: (value: string) => value is FlowVersionPayloadGeneration; export declare const ACCEPTED_SUBMISSION_FLOW_VERSION_PAYLOAD_GENERATIONS: readonly ["3", "4"]; export type AcceptedSubmissionFlowVersionPayloadGeneration = (typeof ACCEPTED_SUBMISSION_FLOW_VERSION_PAYLOAD_GENERATIONS)[number]; export declare const flowVersionResolutionSchema: z.ZodMiniObject<{ flowVersionId: z.ZodMiniString; }, z.core.$strip>; export declare const themeVersionResolutionSchema: z.ZodMiniObject<{ themeRuntimeArtifactId: z.ZodMiniString; themeVersionId: z.ZodMiniString; }, z.core.$strip>; export type FlowVersionResolution = z.output; export type ThemeVersionResolution = z.output; //# sourceMappingURL=version-resolution.d.ts.map