export declare class Bem { private readonly namespace; constructor(namespace: string); block(...modifiers: Array): string; modifier(name: string): string; element(name: string, ...modifiers: Array): string; } export declare function buildBem(namespace: string): Bem;