import { CLazySelector, CStringSelector, CssRenderPlugin, createCNode } from 'css-render'; interface BEMPluginOptions { blockPrefix?: string; elementPrefix?: string; modifierPrefix?: string; } declare type AvailableSelector = CStringSelector | CLazySelector; interface CssRenderBemPlugin extends CssRenderPlugin { cB: createCNode; cE: createCNode; cM: createCNode; cNotM: createCNode; } declare function plugin(options?: BEMPluginOptions): CssRenderBemPlugin; export { plugin }; export default plugin;