import { type ElementType, type ReactElement } from 'react'; import { type TypographyProps } from './Typography.types'; /** * * The general-purpose typography component. * This component changes its appearance by means of a prop `variant`. * It is rendered as an HTML tag matching the names passed to `as`, and can pass the HTML standard attributes of the specified HTML tag as is. */ export declare const Typography: (props: TypographyProps) => ReactElement;