import { default as React } from 'react'; import { TypographySizeVariants, TypographyVariants } from '.'; type AsType = "body1" | "body2" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "overline" | "subtitle1" | "subtitle2" | string; export interface Props extends React.PropsWithChildren { as?: AsType; className?: string; } declare const Typography: (props: Props & TypographyVariants & TypographySizeVariants) => React.ReactElement<{ className: string; }, string | React.JSXElementConstructor>; export { Typography };