import type { ComponentProps } from "react";
import { TextRoot } from "./text";
export declare const Text: (({ children, className, size, variant, ...rest }: import("./text").TextRootProps) => import("react/jsx-runtime").JSX.Element) & {
    Root: ({ children, className, size, variant, ...rest }: import("./text").TextRootProps) => import("react/jsx-runtime").JSX.Element;
};
export type Text = {
    Props: ComponentProps<typeof TextRoot>;
    RootProps: ComponentProps<typeof TextRoot>;
};
export { TextRoot };
export type { TextRootProps, TextRootProps as TextProps } from "./text";
export { textVariants } from "@heroui/styles";
export type { TextVariants } from "@heroui/styles";
