type BEMType = string | [string, 'B' | 'E' | 'M', ...unknown[]];
export default function useClassName(componentName: string): {
    c: (...arg: BEMType[]) => string;
    ce: (e: string) => BEMType;
    cm: (m: string) => BEMType;
    cx: (cls: () => Record<string, boolean>) => import('vue').ComputedRef<string>;
};
export {};
