import type { Theme } from '../../../_mixins'; import type { ThemeCommonVars } from '../../../config-provider'; export declare function self(vars: ThemeCommonVars): { margin: string; aTextColor: string; blockquoteTextColor: string; blockquotePrefixColor: string; codeBorderRadius: string; fontSize: string; lineHeight: string; textColor: string; textColorPrimary: string; textColorInfo: string; textColorSuccess: string; textColorWarning: string; textColorError: string; codeTextColor: string; codeColor: string; codeBorder: string; }; export type TypographyThemeVars = ReturnType; declare const typographyLight: Theme<'Typography', TypographyThemeVars>; export default typographyLight; export type TypographyTheme = typeof typographyLight;