import { type CSSInterpolation } from '../cssinjs'; import type { AliasToken, TokenWithCommonCls } from './interface'; import { ThemeManager } from './theme-context'; export type AliasTokenWithCommonCls = TokenWithCommonCls; export declare function getOverrideStyleHook(component: string, styleFn: (token: AliasTokenWithCommonCls) => CSSInterpolation): (_themeManager?: ThemeManager) => { readonly token: import("vue").ComputedRef; readonly hashId: import("vue").Ref; };