import { z } from 'zod'; import { InputBlockType } from './enums'; export declare const dateInputOptionsSchema: z.ZodObject<{ variableId: z.ZodOptional; } & { labels: z.ZodObject<{ button: z.ZodString; from: z.ZodString; to: z.ZodString; }, "strip", z.ZodTypeAny, { button: string; from: string; to: string; }, { button: string; from: string; to: string; }>; hasTime: z.ZodBoolean; isRange: z.ZodBoolean; }, "strip", z.ZodTypeAny, { labels: { button: string; from: string; to: string; }; hasTime: boolean; isRange: boolean; variableId?: string | undefined; }, { labels: { button: string; from: string; to: string; }; hasTime: boolean; isRange: boolean; variableId?: string | undefined; }>; export declare const dateInputSchema: z.ZodObject<{ id: z.ZodString; groupId: z.ZodString; outgoingEdgeId: z.ZodOptional; } & { type: z.ZodEnum<[InputBlockType.DATE]>; options: z.ZodObject<{ variableId: z.ZodOptional; } & { labels: z.ZodObject<{ button: z.ZodString; from: z.ZodString; to: z.ZodString; }, "strip", z.ZodTypeAny, { button: string; from: string; to: string; }, { button: string; from: string; to: string; }>; hasTime: z.ZodBoolean; isRange: z.ZodBoolean; }, "strip", z.ZodTypeAny, { labels: { button: string; from: string; to: string; }; hasTime: boolean; isRange: boolean; variableId?: string | undefined; }, { labels: { button: string; from: string; to: string; }; hasTime: boolean; isRange: boolean; variableId?: string | undefined; }>; }, "strip", z.ZodTypeAny, { id: string; type: InputBlockType.DATE; groupId: string; options: { labels: { button: string; from: string; to: string; }; hasTime: boolean; isRange: boolean; variableId?: string | undefined; }; outgoingEdgeId?: string | undefined; }, { id: string; type: InputBlockType.DATE; groupId: string; options: { labels: { button: string; from: string; to: string; }; hasTime: boolean; isRange: boolean; variableId?: string | undefined; }; outgoingEdgeId?: string | undefined; }>; export declare const defaultDateInputOptions: DateInputOptions; export type DateInputBlock = z.infer; export type DateInputOptions = z.infer; //# sourceMappingURL=date.d.ts.map