import { EntitySystem } from '../entities/system.js'; export interface GraphNode { id: number; classname: string; targetname: string | null; } export interface GraphEdge { from: number; to: number; type: 'target' | 'killtarget' | 'other'; } export interface EntityGraph { nodes: GraphNode[]; edges: GraphEdge[]; } export declare function getEntityGraph(system: EntitySystem): EntityGraph; export declare function getEntityTargets(system: EntitySystem, entityId: number): number[]; export declare function getEntitySources(system: EntitySystem, entityId: number): number[]; //# sourceMappingURL=graph.d.ts.map