import { i as CellTypeInferenceSink } from "../cell-typing-BQ-xQ5X5.js"; import { ContentDocument } from "document-schema.js"; import { LayoutDocument } from "pdf-codec"; //#region src/layout/reconstruct.d.ts interface ReconstructOptions { readonly signal?: AbortSignal; readonly onCellTypeInference?: CellTypeInferenceSink; } declare function reconstructWordprocessing(doc: LayoutDocument, options?: ReconstructOptions): ContentDocument; declare function reconstructPresentation(doc: LayoutDocument, options?: ReconstructOptions): ContentDocument; declare function reconstructDrawing(doc: LayoutDocument, options?: ReconstructOptions): ContentDocument; declare function reconstructSpreadsheet(doc: LayoutDocument, options?: ReconstructOptions): ContentDocument; //#endregion export { ReconstructOptions, reconstructDrawing, reconstructPresentation, reconstructSpreadsheet, reconstructWordprocessing };