import { BaseInputProps } from '../../types/input'; export interface InputDateProps extends Omit { feDateDisplay?: 'first' | 'last'; /** If true, hides the calendar icon */ feHideIcon?: boolean; } declare const InputDate: import("react").ForwardRefExoticComponent>; export default InputDate;