import { FC, IglooComponentProps } from '../types'; import './style/input-date'; type Props = IglooComponentProps & { value?: { year: string | number; month: string | number; }; onChange?: any; disabled?: boolean; check?: (value: { year: string; month: string; }) => boolean; }; declare const IglooExpiryDate: FC; export default IglooExpiryDate;