import { default as React } from 'react'; import { STATE } from '../../constants'; import { InputProps as AntInputProperties, InputRef } from 'antd'; import { InputEvent } from '../../types/events'; type BaseInputProps = Omit; export interface InputProps extends BaseInputProps { state?: keyof typeof STATE; size?: "normal" | "small" | "large"; onChange?: (actionEvent: InputEvent) => void; value?: string; rest?: HTMLInputElement; } declare const Input: React.ForwardRefExoticComponent>; export default Input;