import type { EdgeData } from '../types'; export declare const getSourceId: (source: EdgeData['source']) => string; export declare const getTargetId: (target: EdgeData['target']) => string; export declare const getSourceTarget: (edge: EdgeData) => { source: string; target: string; }; export declare function processLinks(links: any): any;