export declare type Mod = string | {
    [key: string]: any;
};
export declare type Mods = Mod | Mod[];
export declare function createBEM(name: string): (el?: Mods | undefined, mods?: Mods | undefined) => Mods;
export declare type BEM = ReturnType<typeof createBEM>;
export declare function createNamespace(name: string): readonly [string, (el?: Mods | undefined, mods?: Mods | undefined) => Mods];
