import { IFontSizeSpec, IFontWeightSpec } from './specs'; export interface ITypographySpec { global: { fontFamily: string; fontSize: number; lineHeight: number; }; fontWeight: Record; fontSize: Record; lineHeight: Record; } export interface ITypography { spec: ITypographySpec; }