export interface Relationship { id: string; type: string; target: string; } /** * Parse a .rels XML file into a map of relationship ID → Relationship. */ export declare function parseRelationships(xml: string): Map; /** Get relationship by type suffix (e.g. 'slide', 'slideLayout', 'slideMaster', 'theme', 'image') */ export declare function getRelByType(rels: Map, typeSuffix: string): Relationship | undefined; /** Get all relationships matching a type suffix */ export declare function getRelsByType(rels: Map, typeSuffix: string): Relationship[]; //# sourceMappingURL=relationships-parser.d.ts.map