///
import { DesktopDatePickerProps } from '@mui/x-date-pickers';
export interface FieldTypeDateProps extends Omit, 'renderInput'> {
helperText?: string;
error?: boolean;
required?: boolean;
}
declare const FieldTypeDate: ({ label, helperText, error, required, ...props }: FieldTypeDateProps) => JSX.Element;
export default FieldTypeDate;