export interface ICorrelator { withId(id: string, work: () => R): R; withId(work: () => R): R; bindId(id: string, work: W): W; bindId(work: W): W; getId(): string | undefined; setId(id: string): undefined; } //# sourceMappingURL=ICorrelator.d.ts.map