/// <reference types="react" />
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<Omit<InputProps, "ref"> & import("react").RefAttributes<InputRef>>;
export interface TextAreaProps extends AntdTextAreaProps {
    ref?: any;
    type?: 'ghost' | 'block';
}
export declare const TextArea: import("react").NamedExoticComponent<TextAreaProps>;
