5 lines
257 B
TypeScript
5 lines
257 B
TypeScript
|
import { type ComputedRef } from 'vue';
|
||
|
import type { ThemeCommonVars } from '../_styles/common';
|
||
|
import type { CustomThemeCommonVars } from '../config-provider';
|
||
|
export declare function useThemeVars(): ComputedRef<ThemeCommonVars & CustomThemeCommonVars>;
|