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