2025-12-10 12:02:17 +08:00

17 lines
610 B
TypeScript

import type { Theme } from '../../_mixins';
import type { ThemeCommonVars } from '../../_styles/common';
export declare function self(vars: ThemeCommonVars): {
labelFontSize: string;
labelFontWeight: string;
valueFontWeight: string;
valueFontSize: string;
labelTextColor: string;
valuePrefixTextColor: string;
valueSuffixTextColor: string;
valueTextColor: string;
};
export type StatisticThemeVars = ReturnType<typeof self>;
declare const statisticLight: Theme<'Statistic', StatisticThemeVars>;
export default statisticLight;
export type StatisticTheme = typeof statisticLight;