import { PptxSlide, PptxSlideLayout, PptxSlideMaster } from 'pptx-viewer-core'; /** * Turn a parsed master (optionally overlaid with one of its layouts) into the * slide shape `SlideStage` consumes. * * The composition rule itself lives in `pptx-viewer-shared` so all five * bindings agree on it, in particular that a layout is painted on top of its * own master rather than on an empty canvas. */ export declare function masterToSlide(master: PptxSlideMaster): PptxSlide; /** Turn a parsed layout into the slide shape consumed by SlideStage. */ export declare function layoutToSlide(layout: PptxSlideLayout): PptxSlide; export declare function selectedMasterSlide(masters: readonly PptxSlideMaster[], masterIndex: number, layoutIndex: number | null): PptxSlide | undefined; //# sourceMappingURL=master-view.d.ts.map