import { VariantProps } from 'class-variance-authority'; import * as React from "react"; export declare const textAreaVariants: (props?: ({ error?: boolean | null | undefined; isFocused?: boolean | null | undefined; variant?: "default" | "floating-label" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface TextAreaProps extends Omit, "className" | "style" | "placeholder">, VariantProps { /** * If true, the textarea will display in an error state with error styling */ error?: boolean; /** * If true, the textarea will display in a focused state with focus styling * @default false */ isFocused?: boolean; /** * The label text for the textarea */ label?: string; /** * Variant of the input * @default "default" */ variant?: "default" | "floating-label"; } declare const TextArea: React.ForwardRefExoticComponent>; export { TextArea }; export type { TextAreaProps };