export declare const BaseFontSize: { readonly Body1: 13; readonly Body2: 16; }; export type BaseFontSize = (typeof BaseFontSize)[keyof typeof BaseFontSize]; /** * Defines font sizes and line heights of common typographic elements. * Units are in `px` */ declare const typeScales: { readonly body1: { readonly fontSize: 13; readonly lineHeight: 20; }; readonly body2: { readonly fontSize: 16; readonly lineHeight: 28; }; readonly code1: { readonly fontSize: 13; readonly lineHeight: 20; }; readonly code2: { readonly fontSize: 15; readonly lineHeight: 24; }; readonly disclaimer: { readonly fontSize: 12; readonly lineHeight: 20; }; readonly large: { readonly fontSize: 18; readonly lineHeight: 24; }; }; export default typeScales; //# sourceMappingURL=typeScales.d.ts.map