import { DatePickerProps as MuiDatePickerProps } from '@mui/x-date-pickers/DatePicker'; export interface DatePickerProps extends Omit { /** The size of the picker input. Matches TextField sizes. */ size?: 'small' | 'medium' | 'large'; /** * Placeholder text inside the input. Derived from `label` when omitted. * Pass an empty string to disable the default placeholder. */ placeholder?: string; } export declare const DatePicker: import('../../../node_modules/react').ForwardRefExoticComponent>;