import { EventsResponse } from "../../common/types"; import { EventsService } from "./events.service"; export declare class EventsController { private readonly events; constructor(events: EventsService); getEvents(id: string, sessionId: string): Promise; getEventGraph(id: string, sessionId: string, eventId: string): Promise<{ graph: any; highlights: Array<[string, string]>; } | { error: string; }>; } //# sourceMappingURL=events.controller.d.ts.map