export interface DatePickerProps { label: string; disabled?: boolean; error?: boolean; name?: string; value?: string | number | Date; helperText?: string; dataPosition?: number; dataName?: string; disableFutureDates?: boolean; placeholder?: string; required?: boolean; disablePastDates?: boolean; defaultValue?: string | number | Date | undefined; textFieldProps?: any; format?: string; } declare const DatePicker: import('react').MemoExoticComponent<(props: DatePickerProps) => import("react/jsx-runtime").JSX.Element>; export { DatePicker }; export default DatePicker;