import { FileParserOptions, posthtml } from '@morjs/utils';
/**
 * 自定义 template 处理
 */
export declare const templateProcessor: {
    onNode(node: posthtml.Node, options: FileParserOptions): void;
    onNodeExit(node: posthtml.Node, options: FileParserOptions, context: Record<string, any>): void;
    onNodeAttr(attrName: string, node: posthtml.Node, options: FileParserOptions, context: Record<string, any>): void;
    onNodeAttrExit(attrName: string, node: posthtml.Node, options: FileParserOptions, context: Record<string, any>): void;
};
