import { InputProps } from 'antd/es/input'; import { InputNumberProps } from 'antd/es/input-number'; import { FC, IglooComponentProps } from '../../types'; type Props = InputProps & InputNumberProps & IglooComponentProps & { mode?: 'step' | 'default'; }; declare const IglooInputNumber: FC; export default IglooInputNumber;