import { ITextColor } from '../colors'; import { IFontSizeSpec } from '../specs'; export declare type ITypographyHeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; export declare type ITypographyTitleLevel = 1 | 2 | 3 | 4 | 5 | 6; export interface ITypographyToken { defaultFontLevel: IFontSizeSpec; defaultTextType: keyof ITextColor; defaultTitleType: keyof ITextColor; titleFontLevelMap: Record; titleMarginTop: string; titleMarginBottom: string; }