/// <reference types="react" />
import { InputProps } from '../components';
export declare const TextareaField: (props: import("./wrapFieldWithMeta").InputFieldType<{
    input: InputProps;
}, {}>) => JSX.Element;
export declare const TextareaFieldPlugin: {
    name: string;
    Component: (props: import("./wrapFieldWithMeta").InputFieldType<{
        input: InputProps;
    }, {}>) => JSX.Element;
    parse: (value?: string) => string;
    validate(value: any, values: any, meta: any, field: any): string;
};
