import { Baggage } from './Baggage'; import { BaggageEntry, BaggageEntryMetadata } from './Entry'; export * from './Baggage'; export * from './Entry'; /** * Create a new Baggage with optional entries * * @param entries An array of baggage entries the new baggage should contain */ export declare function createBaggage(entries?: Record): Baggage; /** * Create a serializable BaggageEntryMetadata object from a string. * * @param str string metadata. Format is currently not defined by the spec and has no special meaning. * */ export declare function baggageEntryMetadataFromString(str: string): BaggageEntryMetadata;