export type FontTokens = { lightFontFamily: string; regularFontFamily: string; mediumFontFamily: string; semiboldFontFamily: string; boldFontFamily: string; }; export type Font = { fontFamily: string; fontWeight: number; fontSize: string; lineHeight: string | number; letterSpacing: string; }; export type FontVariants = { header1: Font; header2: Font; header3: Font; header4: Font; headerBold1: Font; headerBold2: Font; headerBold3: Font; body1: Font; body2: Font; body3: Font; bodyMedium1: Font; bodyMedium3: Font; bodyLight3: Font; bodyBold2: Font; button1: Font; button2: Font; }; //# sourceMappingURL=types.d.ts.map