import { ICorrelationIdService } from './correlationid.interface'; export declare class CorrelationIdService implements ICorrelationIdService { private _correlationId; constructor(); get correlationId(): string; set correlationId(correlationId: string); getOrCreateCorrelationId(): string; createNewCorrelationId(): string; }