import React from "react"; import AntdInput, { InputProps } from "antd/lib/input"; declare const TextArea: React.ForwardRefExoticComponent>; declare const Search: React.ForwardRefExoticComponent>; declare const Group: React.FC; declare const Password: React.ForwardRefExoticComponent>; interface RefInputProps extends InputProps { forwardedRef?: any; } interface FCInputProps extends React.FC { TextArea: typeof TextArea; Search: typeof Search; Group: typeof Group; Password: typeof Password; } export declare const Input: FCInputProps; declare const _default: (React.NamedExoticComponent> & { readonly type: React.ForwardRefExoticComponent>; } & FCInputProps) | (React.NamedExoticComponent & FCInputProps); export default _default;