import React from 'react'; import { Input as AntInput } from 'antd'; import type { InputProps } from 'antd'; import type { TextAreaProps, PasswordProps, SearchProps } from 'antd/es/input'; const defaultProps = { allowClear: true, showCount: true }; function TextArea(props: TextAreaProps) { return ; } function Password(props: PasswordProps) { return ; } function Search(props: SearchProps) { return ; } export function Input(props: InputProps) { return ; } Input.TextArea = TextArea; Input.Password = Password; Input.Search = Search; Input.Group = AntInput.Group;