/// <reference types="react" />
import { TextareaProps } from "@tiller-ds/form-elements";
declare type TextareaOnlyPropsUnion = "value" | "onChange" | "onBlur" | "error";
export declare type TextareaFieldProps = {
    /**
     * The accessor value for component (for validation, fetching, etc.).
     */
    name: string;
} & Omit<TextareaProps, TextareaOnlyPropsUnion>;
export default function TextareaField({ name, tooltip, ...props }: TextareaFieldProps): JSX.Element;
export {};
