import type { TextVariants } from "@heroui/styles"; import type { ComponentPropsWithRef } from "react"; import { Text as TextPrimitive } from "react-aria-components/Text"; interface TextRootProps extends ComponentPropsWithRef, TextVariants { } declare const TextRoot: ({ children, className, size, variant, ...rest }: TextRootProps) => import("react/jsx-runtime").JSX.Element; export { TextRoot }; export type { TextRootProps };