import { ContentDocument } from "document-schema.js"; //#region src/convert/variant-bridges.d.ts type WordprocessingContentDocument = Extract; type PresentationContentDocument = Extract; type DrawingContentDocument = Extract; type SpreadsheetContentDocument = Extract; declare function wordprocessingToPresentation(doc: WordprocessingContentDocument): PresentationContentDocument; declare function presentationToWordprocessing(doc: PresentationContentDocument): WordprocessingContentDocument; declare function drawingToPresentation(doc: DrawingContentDocument): PresentationContentDocument; declare function presentationToDrawing(doc: PresentationContentDocument): DrawingContentDocument; declare function spreadsheetToWordprocessing(doc: SpreadsheetContentDocument): WordprocessingContentDocument; //#endregion export { drawingToPresentation, presentationToDrawing, presentationToWordprocessing, spreadsheetToWordprocessing, wordprocessingToPresentation };