import type WordConverterArguments from './WordConverterArguments'; import type WordCustomData from './WordCustomData'; /** * @internal * Processes HTML generated by Word, converting Word Lists into standard HTML UL and OL tags */ export default interface WordConverter { /** Next unique id to be assigned to a list */ nextUniqueId: number; /** Number of bullets converted */ numBulletsConverted: number; /** Number of numbering converted */ numNumberedConverted: number; /** The structure that records the status of the conversion */ wordConverterArgs: WordConverterArguments | null; /** Custom data storage for list items */ wordCustomData: WordCustomData; } /** * @internal * create an empty WordConverter */ export declare function createWordConverter(): WordConverter;