interface TypoColors { body: string; danger: string; error: string; hoverNestedLink: string; main: string; nestedLink: string; primary: string; subdued: string; success: string; warning: string; white: string; } interface TypoFontWeights { bold: number; light: number; nestedStrongTag: number; regular: number; semiBold: number; } interface TypoFontSizes { large: string; medium: string; small: string; xlarge: string; xsmall: string; xxlarge: string; xxxlarge: string; xxxxlarge: string; xxxxxlarge: string; } interface TypoLineHeights { large: string; medium: string; small: string; xlarge: string; xsmall: string; xxlarge: string; xxxlarge: string; xxxxlarge: string; xxxxxlarge: string; } interface TypoSpace { nestedUnorderedListPaddingLeft: string; } declare const typoColors: TypoColors; declare const typoFontWeights: TypoFontWeights; declare const typoFontSizes: TypoFontSizes; declare const typoLineHeights: TypoLineHeights; declare const typoSpace: TypoSpace; export { typoColors, typoFontSizes, typoFontWeights, typoLineHeights, typoSpace, };