import { TextFieldProps } from '@mui/material/TextField';
import { DatePickerProps as MuiDatePickerProps } from '@mui/x-date-pickers';
import { FieldProps } from 'react-final-form';
import { ShowErrorFunc } from './Util';
export interface DatePickerProps extends Partial<Omit<MuiDatePickerProps, 'onChange'>> {
    fieldProps?: Partial<FieldProps<any, any>>;
    locale?: any;
    name: string;
    required?: boolean;
    showError?: ShowErrorFunc;
    textFieldProps?: TextFieldProps;
}
export declare function DatePicker(props: DatePickerProps): import("react/jsx-runtime").JSX.Element;
