import type { TypographyFormat, TextDecoration, TypographyColors } from './typography.types'; export declare class IxTypography { /** * Text format */ format?: TypographyFormat; /** * Text color based on theme variables */ textColor?: TypographyColors; /** * Display text bold */ bold: boolean; /** * Text decoration */ textDecoration: TextDecoration; private static getTextColor; render(): any; }