import type { Baggage } from '../Baggage'; import type { BaggageEntry } from '../Entry'; export declare class BaggageImpl implements Baggage { private _entries; constructor(entries?: Map); getEntry(key: string): BaggageEntry | undefined; getAllEntries(): [string, BaggageEntry][]; setEntry(key: string, entry: BaggageEntry): BaggageImpl; removeEntry(key: string): BaggageImpl; removeEntries(...keys: string[]): BaggageImpl; clear(): BaggageImpl; }