import type { CharacterProperties, Fill, Slide, ParagraphProperties } from "../model/types.js"; import type { PlaceholderType } from "../model/enums.js"; export declare function resolveSlideBackground(slide: Slide): Fill | undefined; export declare function resolveCharacterProperties(local: CharacterProperties | undefined, slide: Slide, level?: number, placeholderType?: PlaceholderType): CharacterProperties; export declare function resolveParagraphProperties(local: ParagraphProperties | undefined, slide: Slide, level?: number, placeholderType?: PlaceholderType): ParagraphProperties;