import { default as React } from 'react';
import { TextFieldProps } from '@mui/material';
export type FinTextareaProps = TextFieldProps & {
    labelText?: string;
    labelVariant?: 'caption' | 'body2' | 'subtitle2' | 'h6';
    hasError?: boolean;
    inputTestId?: string;
    labelTestId?: string;
    errorTestId?: string;
};
export declare const FinTextarea: React.FC<FinTextareaProps>;
