import { ChangeEvent } from 'react'; import AntInput, { InputProps as AntInputProps, InputRef, TextAreaProps as AntTextAreaProps } from 'antd/es/input'; import { TextAreaRef } from 'antd/es/input/TextArea'; interface InputProps extends Omit { onChange?: (value: string, event: ChangeEvent) => void; } declare const InternalInput: import("react").ForwardRefExoticComponent>; declare type InternalInputType = typeof InternalInput; interface TextAreaProps extends Omit { onChange?: (value: string, event: ChangeEvent) => void; } declare const TextArea: import("react").ForwardRefExoticComponent>; interface InputInterface extends InternalInputType { Group: typeof AntInput.Group; Search: typeof AntInput.Search; TextArea: typeof TextArea; Password: typeof AntInput.Password; } declare const Input: InputInterface; export default Input;