import { PluginContext } from '../Plugin.js'; import { NodeProcessorConfig } from '../../html/NodeProcessor.js'; import { MbNode } from '../../utils/node.js'; declare const beforeSiteGenerate: () => void; declare const tagConfig: { puml: { isSpecial: boolean; attributes: ({ name: string; isRelative: boolean; isSourceFile?: undefined; } | { name: string; isRelative: boolean; isSourceFile: boolean; })[]; }; }; declare const processNode: (_pluginContext: PluginContext, node: MbNode, config: NodeProcessorConfig) => void; export { tagConfig, beforeSiteGenerate, processNode, }; //# sourceMappingURL=markbind-plugin-plantuml.d.ts.map