/// import { DatePickerProps as $DatePickerProps, MonthPickerProps as $MonthPickerProps, RangePickerProps as $RangePickerProps, WeekPickerProps as $WeekPickerProps } from "antd/lib/date-picker/interface"; import { FormikFieldProps } from "../FieldProps"; export declare type DatePickerProps = FormikFieldProps & $DatePickerProps; export declare const DatePicker: { ({ name, validate, onChange, ...restProps }: DatePickerProps): JSX.Element; MonthPicker({ name, validate, onChange, ...restProps }: MonthPickerProps): JSX.Element; RangePicker({ name, validate, onChange, ...restProps }: RangePickerProps): JSX.Element; WeekPicker({ name, validate, onChange, ...restProps }: WeekPickerProps): JSX.Element; }; export default DatePicker; export declare type MonthPickerProps = FormikFieldProps & $MonthPickerProps; export declare type RangePickerProps = FormikFieldProps & $RangePickerProps; export declare type WeekPickerProps = FormikFieldProps & $WeekPickerProps; //# sourceMappingURL=index.d.ts.map