declare function useBem(base: string): {
    bem: (name?: string | Record<string, boolean>, ...names: Array<string | Record<string, boolean>>) => string;
    element: (element?: string | Record<string, boolean>) => string;
    modifier: (modifier: string | Record<string, boolean>) => string;
    base: string;
};

export { useBem };
