export interface TextareaClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the textarea element. */ textarea: string; /** Class name applied to the startDecorator element */ startDecorator: string; /** Class name applied to the endDecorator element */ endDecorator: string; /** Class name applied to the root element if the component is focused. */ focused: string; /** Class name applied to the root element if `disabled={true}`. */ disabled: string; /** State class applied to the root element if `error={true}`. */ error: string; /** Class name applied to the root element if `fullWidth={true}`. */ fullWidth: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="medium"`. */ sizeMedium: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; } export type TextareaClassKey = keyof TextareaClasses; export declare function getTextareaUtilityClass(slot: string): string; declare const textareaClasses: TextareaClasses; export default textareaClasses;