2024-08-02 18:19:39 +08:00

17 lines
610 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
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;