///
import { InputProps as AntdInputProps } from 'antd/es/input';
import { FC, IglooComponentProps } from '../types';
import './style/index';
export type InputProps = AntdInputProps & IglooComponentProps & {
ref?: React.Ref;
};
declare const IglooInput: FC;
export default IglooInput;