/// import { Input as TntdInput } from 'tntd'; import type { InputProps as AntdInputProps } from 'antd/lib/input'; type IInput

= React.ComponentType

& { TextArea: typeof TntdInput.TextArea; Search: typeof TntdInput.Search; Group: typeof TntdInput.Group; Password: typeof TntdInput.Password; }; export type InputProps = AntdInputProps; declare const Input: IInput; export default Input;