import { default as theme } from '../theme'; import { AnchorHTMLAttributes, ElementType, HTMLAttributes } from 'react'; export type TypographyProps = { /** Вариант */ variant: keyof typeof theme.typography; /** TagName - по умолчанию div */ as?: ElementType; } & HTMLAttributes & AnchorHTMLAttributes; export declare const Typography: import('react').ForwardRefExoticComponent<{ /** Вариант */ variant: keyof typeof theme.typography; /** TagName - по умолчанию div */ as?: ElementType; } & HTMLAttributes & AnchorHTMLAttributes & import('react').RefAttributes>;