import { default as React } from 'react'; export type TypographyVariant = 'heading-h1' | 'heading-h2' | 'heading-h3' | 'heading-h4' | 'heading-h5' | 'heading-h6' | 'subtitle-md' | 'subtitle-sm' | 'body-md' | 'body-sm' | 'label' | 'tooltip'; export interface TypographyProps extends React.HTMLAttributes { variant: TypographyVariant; as?: React.ElementType; children?: React.ReactNode; className?: string; } export declare function Typography({ variant, as, children, className, ...rest }: TypographyProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Typography.d.ts.map