import { Fill } from '../types/fill'; import { TextBody } from '../types/text'; import { Transform2D } from '../types/common'; import { LineStyle } from '../types/shape'; import { DefaultTextStyle } from '../types/presentation'; export interface LayoutPlaceholder { type: string; idx?: number; transform?: Transform2D; fill?: Fill; line?: LineStyle; presetGeometry?: string; textBody?: TextBody; lstStyle?: DefaultTextStyle; } export interface SlideLayoutInfo { background?: Fill; placeholders: LayoutPlaceholder[]; } /** * Parse slideLayoutN.xml → background and placeholders. */ export declare function parseSlideLayout(xml: string): SlideLayoutInfo; //# sourceMappingURL=layout-parser.d.ts.map