export interface Relationship { id: string; type: string; target: string; } export declare function parseRelationships(xml: string): Map;