import type { Mods } from 'xzx-design/es/utils'; import type { InjectionKey, Ref } from 'vue'; export declare const defaultNamespace = "xzx"; export declare function createBEM(name: string): (el?: Mods, mods?: Mods) => Mods; export type BEM = ReturnType; export declare const namespaceContextKey: InjectionKey>; export declare const useGetDerivedNamespace: (namespaceOverrides?: Ref) => import("vue").ComputedRef; export declare const useNamespace: (block: string, namespaceOverrides?: Ref) => { namespace: import("vue").ComputedRef; b: (blockSuffix?: string) => string; e: (element?: string) => string; m: (modifier?: string) => string; be: (blockSuffix?: string, element?: string) => string; em: (element?: string, modifier?: string) => string; bm: (blockSuffix?: string, modifier?: string) => string; bem: (blockSuffix?: string | any[] | Record, element?: string | any[] | Record, modifier?: string) => Mods; is: { (name: string, state: boolean | undefined): string; (name: string): string; }; cssVar: (object: Record) => Record; cssVarName: (name: string) => string; cssVarBlock: (object: Record) => Record; cssVarBlockName: (name: string) => string; }; export type UseNamespaceReturn = ReturnType;