type Mods = Record<string, boolean | string | number | undefined>;
declare function bem(block: string): (element?: string, modifiers?: Mods) => string;
declare function cx(...parts: Array<string | false | null | undefined>): string;
export { bem as b, cx as c };