import * as z from "zod"; export declare const LabeledMonthPickerPropsSchema: z.ZodObject<{ label: z.ZodString; value: z.ZodString; onChange: z.ZodFunction, z.ZodVoid>; error: z.ZodOptional; helperText: z.ZodOptional; disabled: z.ZodOptional; required: z.ZodOptional; minMonth: z.ZodOptional; maxMonth: z.ZodOptional; "data-testid": z.ZodOptional; }, "strip", z.ZodTypeAny, { onChange: (args_0: string) => void; label: string; value: string; disabled?: boolean | undefined; error?: string | undefined; required?: boolean | undefined; helperText?: string | undefined; "data-testid"?: string | undefined; minMonth?: string | undefined; maxMonth?: string | undefined; }, { onChange: (args_0: string) => void; label: string; value: string; disabled?: boolean | undefined; error?: string | undefined; required?: boolean | undefined; helperText?: string | undefined; "data-testid"?: string | undefined; minMonth?: string | undefined; maxMonth?: string | undefined; }>; export type LabeledMonthPickerProps = z.infer;