/// declare type TypographyVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "body"; declare const Typography: ({ variant, children, }: { variant?: TypographyVariant | undefined; children: string | JSX.Element; }) => JSX.Element; export default Typography;