import { Table } from '../table'; import { Handler } from '../handler'; import { Graph } from './Graph'; interface HandlerEntry { id?: any; handler: Handler; } export declare class GraphModule { graph: Graph; handlers: Table; constructor(graph: Graph); redefine(handlers: Handler[]): void; } export {};