import { ContentBlock } from "document-schema.js"; //#region src/model/block-splice.d.ts interface BlockPlacement { readonly index: number; readonly build: (sourcePath: string) => ContentBlock; } declare function spliceBlocks(blocks: readonly ContentBlock[], placements: readonly BlockPlacement[], consumedIndices: ReadonlySet, sourcePathFor: (position: number) => string): ContentBlock[]; //#endregion export { BlockPlacement, spliceBlocks };