import { FC, PropsWithChildren, HTMLAttributes, ElementType } from 'react'; import { TypographyStyledProps } from './styled'; export interface TypographyProps extends TypographyStyledProps, Omit, 'color'> { as?: ElementType; } export declare const Typography: FC>;