import MarkdownIt from 'markdown-it'; /** * Creates a new inline rule for markdown-it, specifically for rules that uses a 'double' delimiter. * Some examples are ++, --, !!, %%. * @param delimiter Represents the double delimiter to be used to create tokens when parsing. * @param ruleName The name that represents the rule you are creating. * @param nextRule There is a precedence ordering for the rules in markdown-it. This parameter * lets you decide which rule to place your newly created rule before. You may refer to the following * link for the existing inline rules in markdown-it. * https://github.com/markdown-it/markdown-it/blob/master/lib/parser_inline.js */ export declare function createDoubleDelimiterInlineRule(delimiter: string, ruleName: string, nextRule: string): (md: MarkdownIt) => void; //# sourceMappingURL=markdown-it-double-delimiter.d.ts.map