import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { color: string; colorPrime: string; colorInfo: string; colorSuccess: string; colorError: string; colorWarning: string; fontSize: string; textColor: string; textColorPrime: string; textColorInfo: string; textColorSuccess: string; textColorError: string; textColorWarning: string; borderColor: string; dotSize: string; }; export type BadgeThemeVars = ReturnType; declare const badgeLight: Theme<'Badge', BadgeThemeVars>; export default badgeLight; export type BadgeTheme = typeof badgeLight;