/** * 将段落节点转换为相应的节点类型(根据内容开头字符) * - ! 开头 → image * - | 开头 → table * - [ 开头 → link * * @returns {(tree: any) => void} * Transformer function. */ export declare function convertParagraphToImage(): (tree: any) => void; /** * Plugin to fix bold text containing special characters like **$9.698M**, **57%**, etc. * * @returns {(tree: any) => void} * Transformer function. */ export declare function fixStrongWithSpecialChars(): (tree: any) => void; declare const markdownParser: import("unified").Processor; export default markdownParser;