import { Fill } from '../types/fill'; import { TextBody } from '../types/text'; import { DefaultTextStyle, MasterTextStyles } from '../types/presentation'; import { Transform2D } from '../types/common'; import { LineStyle } from '../types/shape'; export interface MasterPlaceholder { type: string; idx?: number; transform?: Transform2D; fill?: Fill; line?: LineStyle; presetGeometry?: string; textBody?: TextBody; } export interface SlideMasterInfo { background?: Fill; placeholders: MasterPlaceholder[]; defaultTextStyle?: DefaultTextStyle; textStyles?: MasterTextStyles; } /** * Parse slideMasterN.xml → background, placeholders, text styles. */ export declare function parseSlideMaster(xml: string): SlideMasterInfo; //# sourceMappingURL=master-parser.d.ts.map