import { DateFieldProps } from '@mui/x-date-pickers'; import { FieldPath, FieldValues } from 'react-hook-form'; import { FormDateControlProps } from '../form-date-control'; import { InputWidthVariant } from '../../../../functions'; export type FormDateFieldProps = FieldPath> = FormDateControlProps & Omit, 'format' | 'margin' | 'focused' | 'hiddenLabel' | 'optional' | 'value'> & { inputWidth?: InputWidthVariant; }; export declare const FormDateField: = FieldPath>(props: FormDateFieldProps) => import("@emotion/react/jsx-runtime").JSX.Element;