import * as React from "react"; import { TypographyProps as MuiTypographyProps } from "@mui/material"; export declare const VARIANTS: string[]; declare type TextVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "subtitle1" | "subtitle2" | "subtitle3" | "body1" | "body2" | "body3" | "body4" | "caption1" | "caption2" | "overline" | "input"; declare const StyledTypography: import("@emotion/styled").StyledComponent; }>; export interface TypographyProps extends Pick { variant: TextVariant; children: React.ReactNode; color?: string; textTransform?: string; } declare const Typography: ({ variant, children, color, textTransform, noWrap, ...props }: TypographyProps) => JSX.Element; export { StyledTypography, Typography }; //# sourceMappingURL=typography.d.ts.map