///
import { InputProps as AntdInputProps, InputRef } from 'antd';
import { TextAreaProps as AntdTextAreaProps } from 'antd/es/input/TextArea';
export interface InputProps extends AntdInputProps {
ref?: any;
type?: 'ghost' | 'block';
}
export declare const Input: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
export interface TextAreaProps extends AntdTextAreaProps {
ref?: any;
type?: 'ghost' | 'block';
}
export declare const TextArea: import("react").NamedExoticComponent;