export declare type GroteskFontWeight = 'light' | 'regular' | 'medium'; export declare type DisplayFontWeight = 'regular' | 'medium'; export declare type FontPairing = { $fontFamily?: GroteskFontFamily; $fontWeight?: GroteskFontWeight; } | { $fontFamily: DisplayFontFamily; $fontWeight?: DisplayFontWeight; }; export declare type GroteskFontFamily = 'grotesk'; export declare type DisplayFontFamily = 'display'; export declare type FontFamily = GroteskFontFamily | DisplayFontFamily; export declare type FontSize = 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 20 | 24 | 26 | 28 | 30 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80; export declare type ResponsiveValue = T | [T] | [T, T] | [T, T, T] | [T, T, T, T]; export declare type ResponsiveFontSize = ResponsiveValue; //# sourceMappingURL=types.d.ts.map