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