export declare const FONTS_CONFIG: { bodyM: { 'font-size': string; 'font-weight': number; 'line-height': string; 'bold-font-size': string; 'bold-font-weight': number; 'bold-line-height': string; }; bodyS: { 'font-size': string; 'font-weight': number; 'line-height': string; 'bold-font-size': string; 'bold-font-weight': number; 'bold-line-height': string; }; bodyXS: { 'font-size': string; 'font-weight': number; 'line-height': string; 'bold-font-size': string; 'bold-font-weight': number; 'bold-line-height': string; }; bodyXXS: { 'font-size': string; 'font-weight': number; 'line-height': string; 'bold-font-size': string; 'bold-font-weight': number; 'bold-line-height': string; }; }; type FontObj = (typeof FONTS_CONFIG)[keyof typeof FONTS_CONFIG]; type FontKeyInit = keyof typeof FONTS_CONFIG; type FontKey = FontKeyInit | `${FontKeyInit}Bold`; type FontMetric = { fontSize: number; lineHeightPx: number; }; export type Fonts = { [K in FontKey]: string; }; export type FontMetrics = { [K in FontKey]: FontMetric; }; export declare const createFontStyle: (fontObj: FontObj, bold?: boolean) => string; export declare const fontStyles: Fonts; export declare const fontMetrics: FontMetrics; export {};