import type { ParagraphIndexer, ParagraphMap, ReadonlyContentModelParagraph } from 'roosterjs-content-model-types'; /** * @internal, used by test code only */ export interface ParagraphMapReset { _reset(): void; _getMap(): { [key: string]: ReadonlyContentModelParagraph; }; } /** * @internal */ export declare function createParagraphMap(): ParagraphMap & ParagraphIndexer;