export declare class CorrelationRingBuffer { private readonly capacity; private readonly set; private readonly order; constructor(capacity?: number); add(correlation_id: string): void; has(correlation_id: string): boolean; size(): number; } //# sourceMappingURL=correlation-ring.d.ts.map