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