import type { PartialElement } from '@furystack/shades';
export interface TextAreaProps extends PartialElement<HTMLTextAreaElement> {
    labelTitle?: string;
    labelProps?: PartialElement<HTMLLabelElement>;
    autofocus?: boolean;
    variant?: 'contained' | 'outlined';
}
export declare const TextArea: (props: TextAreaProps & Omit<Partial<HTMLElement>, "style"> & {
    style?: Partial<CSSStyleDeclaration>;
}, children?: import("@furystack/shades").ChildrenList) => JSX.Element;
//# sourceMappingURL=text-area.d.ts.map