import { VariantProps } from 'class-variance-authority'; declare const textVariants: (props?: ({ size?: "base" | "xs" | "sm" | "lg" | "xl" | "2xs" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | null | undefined; weight?: "light" | "bold" | "normal" | "black" | "medium" | "thin" | "extralight" | "semibold" | "extrabold" | null | undefined; align?: "center" | "left" | "right" | "justify" | null | undefined; color?: "default" | "error" | "success" | "warning" | "muted" | "primary" | null | undefined; truncate?: boolean | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface TextProps extends Omit, 'color'>, VariantProps { /** Change the default rendered element */ as?: React.ElementType; /** Render as a Slot component */ asChild?: boolean; } export declare const Text: import('react').ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Text.d.ts.map