export interface FontWeights { bold: string; medium: string; regular: string; } export declare type FontWeight = keyof FontWeights; export declare type Fonts = Record; export interface LineHeights { xxs: string; xs: string; s: string; m: string; l: string; xl: string; xxl: string; xxxl: string; } export declare type LineHeight = keyof LineHeights; export interface LetterSpacings { body: string; heading: string; } export declare type LetterSpacing = keyof LetterSpacings;