import { FullToken, GetDefaultToken } from "../../theme/interface/cssinjs-utils.js"; import "../../theme/internal.js"; //#region src/typography/style/index.d.ts /** Component only token. Which will handle additional calculation of alias token */ interface ComponentToken { /** * @desc 标题上间距 * @descEN Margin top of title */ titleMarginTop: number | string; /** * @desc 标题下间距 * @descEN Margin bottom of title */ titleMarginBottom: number | string; } type TypographyToken = FullToken<'Typography'>; declare const prepareComponentToken: GetDefaultToken<'Typography'>; declare const _default: (prefixCls: import("vue").Ref, rootCls?: import("vue").Ref) => readonly [import("vue").Ref, import("vue").ComputedRef]; //#endregion export { ComponentToken, TypographyToken, _default as default, prepareComponentToken };