import { InputProps } from 'antd/es/input'; import { FC, IglooComponentProps } from '../types'; import './style/input-date'; type Props = InputProps & IglooComponentProps & { format: string; }; declare const IglooInputDate: FC; export default IglooInputDate;