import { TextFieldProps } from '@mui/material/TextField'; import { UseFieldInternalProps } from '../internals/hooks/useField'; import { DateValidationError, DateValidationProps } from '../internals/hooks/validation/useDateValidation'; import { DefaultizedProps } from '../internals/models/helpers'; export interface UseDateFieldProps extends UseFieldInternalProps, Partial, 'value'>> { } export declare type UseDateFieldDefaultizedProps = DefaultizedProps, 'minDate' | 'maxDate' | 'disableFuture' | 'disablePast'>; export declare type UseDateFieldComponentProps = Omit & UseDateFieldProps; export declare type DateFieldProps = UseDateFieldComponentProps;