import { ComponentPropsWithRef, ElementType, PropsWithChildren } from 'react'; export declare const typographyVariants: { readonly title48: "title48"; readonly title32: "title32"; readonly title28: "title28"; readonly title24: "title24"; readonly subTitle20: "subTitle20"; readonly subTitle18: "subTitle18"; readonly contents18: "contents18"; readonly contents16: "contents16"; readonly body16: "body16"; readonly body14: "body14"; readonly body13: "body13"; readonly caption12: "caption12"; readonly caption11: "caption11"; }; export type TypographyVariants = (typeof typographyVariants)[keyof typeof typographyVariants]; export type TypographyProps = PropsWithChildren<{ variant: TypographyVariants; className?: string; as?: T; }> & Omit, 'as' | 'children' | 'className'>;