import type WordConverter from './wordConverter'; /** * @internal * Handles the pass 1: Discovery * During discovery, we'll parse the metadata out of the elements and store it in the list items dictionary. * We'll detect cases where the list items for a particular ordered list are not next to each other. Word does these * for numbered headers, and we don't want to convert those, because the numbering would be completely wrong. */ export declare function processNodesDiscovery(wordConverter: WordConverter): boolean; /** * @internal * Handles the pass 2: Conversion * During conversion, we'll go over the elements that belong to a list that we've marked as a list to convert, and we'll perform the * conversion needed */ export declare function processNodeConvert(wordConverter: WordConverter): boolean;