import { PolymorphicComponentPropsWithRef } from '../utils/types'; import { VariantProps } from 'class-variance-authority'; declare const textStyles: (props?: ({ emphasis?: "low" | null | undefined; size?: "base" | "sm" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | null | undefined; weight?: "bold" | "thin" | "normal" | "medium" | "semibold" | "black" | null | undefined; align?: "center" | "right" | "left" | null | undefined; italic?: boolean | null | undefined; underline?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; type TextProps = PolymorphicComponentPropsWithRef>; type TextComponent = (props: TextProps) => React.ReactElement | null; export declare const Typography: TextComponent; export {};