import PPTX from "./PPTX"; import SlideMaster from "./SlideMaster"; import { ColorType, BackgroundImageType, GradFillType } from "../type/color"; import { relsType } from "../type/slide"; export default class SlideLayout { slideType: string; name: string; source: any; pptx: PPTX; slideMaster: SlideMaster; rels: relsType; background: ColorType | GradFillType | BackgroundImageType; nodes: Array; get _relsPath(): string; get theme(): import("./Theme").default; constructor(name: any, source: any, pptx: any); load(): Promise; _loadRels(): Promise; _loadBackground(): Promise; _loadNodes(): Promise; getColorThemeName(aliseName: any): any; getNodeByType(type: any): any; getNodeByIdx(idx: any): any; getNodeInheritAttrsByType(type: any, propertyPath: Array): any; getNodeInheritAttrsByIdx(idx: any, propertyPath: Array): any; }