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