import type { TextAreaVariants } from "@heroui/styles"; import type { ComponentPropsWithRef } from "react"; import { TextArea as TextAreaPrimitive } from "react-aria-components/TextArea"; interface TextAreaRootProps extends ComponentPropsWithRef, TextAreaVariants { } declare const TextAreaRoot: ({ className, fullWidth, variant, ...rest }: TextAreaRootProps) => import("react/jsx-runtime").JSX.Element; export { TextAreaRoot }; export type { TextAreaRootProps };