import { VariantProps } from 'class-variance-authority'; import React, { ReactNode, HTMLAttributes, RefAttributes } from 'react'; import { typography } from './styles.js'; type TypographyProps = { children?: ReactNode; className?: string; asChild?: boolean; noWrap?: boolean; } & VariantProps & HTMLAttributes; declare const Typography: React.ForwardRefExoticComponent>; export { Typography, TypographyProps };