import * as z from "zod"; export declare const LabeledDatePickerPropsSchema: z.ZodObject<{ label: z.ZodString; value: z.ZodNullable; onChange: z.ZodFunction], z.ZodUnknown>, z.ZodVoid>; error: z.ZodOptional; required: z.ZodOptional; helperText: z.ZodOptional; disabled: z.ZodOptional; minDate: z.ZodOptional; maxDate: z.ZodOptional; "data-testid": z.ZodOptional; }, "strip", z.ZodTypeAny, { onChange: (args_0: Date | null, ...args: unknown[]) => void; label: string; value: Date | null; disabled?: boolean | undefined; error?: string | undefined; required?: boolean | undefined; helperText?: string | undefined; "data-testid"?: string | undefined; minDate?: Date | undefined; maxDate?: Date | undefined; }, { onChange: (args_0: Date | null, ...args: unknown[]) => void; label: string; value: Date | null; disabled?: boolean | undefined; error?: string | undefined; required?: boolean | undefined; helperText?: string | undefined; "data-testid"?: string | undefined; minDate?: Date | undefined; maxDate?: Date | undefined; }>; export type LabeledDatePickerProps = z.infer;