import { InputProps as AntInputProps } from "antd"; import { TextAreaProps as AntTextAreaProps } from "antd/lib/input/TextArea"; import { SearchProps as AntSearchProps, GroupProps as AntGroupProps, PasswordProps as AntPasswordProps } from "antd/lib/input"; export interface InputProps extends AntInputProps { isColorPicker?: boolean; isFlat?: boolean; } export interface TextAreaProps extends AntTextAreaProps { isFlat?: boolean; } export interface SearchProps extends AntSearchProps { } export interface PasswordProps extends AntPasswordProps { isFlat?: boolean; } export interface GroupProps extends AntGroupProps { }