import React from 'react'; import { DateType, InputCommonProps, OutInputCommonProps } from '../interface'; import { DisabledDataProps } from '../date-picker'; import { DirectionType } from '../../config-provider/ConfigContext'; export interface InputDateProps extends OutInputCommonProps, InputCommonProps { inputRef: React.RefObject; text: string; dateValue: DateType | null; selectedValue: DateType | null; disabled?: boolean; hoverValue?: string; placeholder?: string; direction?: DirectionType; disabledDate?: DisabledDataProps; resetText: () => void; setSelectedValue: (date: DateType | null) => void; triggerTextChange: (value: string) => void; triggerOpen: (open: boolean) => void; triggerChange: (date: DateType | null) => void; } declare const _default: React.ForwardRefExoticComponent>; export default _default;