import type { ISlideDocumentData, ISlideImageElement, ISlidePageData, ISlidePageElement, ISlidePageSize, ISlidePresentationBackgroundGraphic } from '../slide.type'; export declare const PRESENTATION_BACKGROUND_GRAPHIC_ROLE = "backgroundGraphic"; export declare const PRESENTATION_BACKGROUND_GRAPHIC_MANAGED_BY = "presentationBackground"; export type SlidePresentationBackgroundGraphicsTarget = 'allMasters' | 'activeMaster'; export declare function isPresentationBackgroundGraphic(element: ISlidePageElement): boolean; export declare function buildPresentationBackgroundGraphicElement(graphic: ISlidePresentationBackgroundGraphic, pageSize: ISlidePageSize, index: number): ISlideImageElement; export declare function replacePresentationBackgroundGraphics>(page: T, pageSize: ISlidePageSize, graphics: ISlidePresentationBackgroundGraphic[]): T; export declare function getPresentationBackgroundGraphics(page: Pick): ISlidePresentationBackgroundGraphic[]; export declare function resolvePresentationBackgroundTargetMasterIds(snapshot: ISlideDocumentData, target?: SlidePresentationBackgroundGraphicsTarget, explicitMasterPageIds?: string[]): string[];