2024-01-29 09:26:07 +08:00
|
|
|
import type { ThemeCommonVars } from '../../_styles/common';
|
2024-08-02 18:19:39 +08:00
|
|
|
import type { Theme } from '../../_mixins';
|
|
|
|
declare function self(vars: ThemeCommonVars): {
|
2024-01-29 09:26:07 +08:00
|
|
|
itemColor: string;
|
|
|
|
itemColorActive: string;
|
|
|
|
sizeSmall: string;
|
|
|
|
sizeMedium: string;
|
|
|
|
sizeLarge: string;
|
|
|
|
};
|
|
|
|
export type RateThemeVars = ReturnType<typeof self>;
|
|
|
|
declare const themeLight: Theme<'Rate', RateThemeVars>;
|
|
|
|
export default themeLight;
|
|
|
|
export type RateTheme = typeof themeLight;
|