export interface ICorrelationIdService { get correlationId(): string; set correlationId(correlationId: string); createNewCorrelationId(): string; getOrCreateCorrelationId(): string; } export declare const ICorrelationIdService: unique symbol;