import type { InputHTMLAttributes } from 'vue';
export interface TTextAreaProps extends InputHTMLAttributes {
id?: string;
value?: string;
label?: string;
error?: boolean;
disabled?: boolean;
placeholder?: string;
helperText?: string;
fullWidth?: boolean;
maxlength?: number;
modelValue?: string;
autoResize?: boolean;
maxRows?: number;
}
//# sourceMappingURL=TTextArea.types.d.ts.map