import { ContentDocument, ContentEmbeddedObjectBlock, ContentPathPoint, ContentVector, PageSize } from "document-schema.js"; //#region src/model/embedded-drawing.d.ts declare function buildDrawingBlock(size: PageSize, vectors: readonly ContentVector[]): ContentEmbeddedObjectBlock; declare function drawingOfBlock(block: ContentEmbeddedObjectBlock): Extract | undefined; declare const FLOW_CONTAINER_ORIGIN: ContentPathPoint; declare function embeddedDrawingVectors(block: ContentEmbeddedObjectBlock, containerOriginPt: ContentPathPoint): ContentVector[]; //#endregion export { FLOW_CONTAINER_ORIGIN, buildDrawingBlock, drawingOfBlock, embeddedDrawingVectors };