import { InputProps } from 'antd'; import React from 'react'; import './index.less'; import { SearchProps } from 'antd/lib/input/Search'; import { PasswordProps } from 'antd/lib/input/Password'; import { TextAreaProps } from 'antd/lib/input/TextArea'; interface ExtraProps { vertify?: VertifyProps; textAlign?: 'left' | 'right' | 'center'; } interface VertifyProps { status: 'success' | 'error' | 'warning'; message?: string; } declare const Input: { (props: InputProps & ExtraProps): React.JSX.Element; Search: (props: SearchProps) => React.JSX.Element; Password: (props: PasswordProps) => React.JSX.Element; TextArea: (props: TextAreaProps) => React.JSX.Element; }; export { Input };