import type { GroupProps as AntdGroupProps, InputProps as AntdInputProps, TextAreaProps as AntdTextAreaProps, PasswordProps as AntdPasswordProps, SearchProps as AntdSearchProps } from 'antd/lib/input'; import type { default as AntdPassword } from 'antd/lib/input/Password'; import type { default as AntdTextArea } from 'antd/lib/input/TextArea'; import type { default as AntdSearch } from 'antd/lib/input/Search'; import { default as AntdInput } from 'antd/lib/input'; import React from 'react'; export interface InputProps extends AntdInputProps { borderStyle?: 'outline'; readonly?: boolean; } export interface GroupProps extends AntdGroupProps { borderStyle?: 'outline'; } export interface TextAreaProps extends AntdTextAreaProps { borderStyle?: 'outline'; readonly?: boolean; } export interface PasswordProps extends AntdPasswordProps { borderStyle?: 'outline'; readonly?: boolean; } export interface SearchProps extends AntdSearchProps { borderStyle?: 'outline'; readonly?: boolean; } declare const Group: React.ForwardRefExoticComponent>>; declare const Search: React.ForwardRefExoticComponent>; declare const TextArea: React.ForwardRefExoticComponent>; declare const Password: React.ForwardRefExoticComponent>; interface InputComponent extends React.ForwardRefExoticComponent> { Group: typeof Group; TextArea: typeof TextArea; Password: typeof Password; Search: typeof Search; } export declare const InternalInput: InputComponent; export declare const Input: InputComponent; export {}; //# sourceMappingURL=input.d.ts.map