import { PropsWithChildren } from 'react'; import { SpacewebComponentProps } from '../types'; import { Override } from '../overrides'; import { TruncateWithTooltipProps } from '../truncateWithTooltip'; export declare type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7' | 'bl1' | 'bl2' | 'bl3' | 'bs1' | 'bs2' | 'bs3' | 'l1' | 'l2' | 'l3' | 'l4' | 'body-8' | 'body-10' | 'body-12' | 'body-13' | 'body-14' | 'body-16' | 'display-18' | 'display-20' | 'display-24' | 'display-28' | 'display-32' | 'display-40' | 'display-42'; export declare type FontWeight = 'regular' | 'medium' | 'semibold' | 'bold'; export declare type TypographyProps = PropsWithChildren & { variant?: TypographyVariant; weight?: FontWeight; overrides?: { TruncateWithTooltip?: Override>; }; maxLines?: number; maxWidth?: number; };