/** * The versioned value interface is a container for a set of values that * can be looked up by version. It is intended to be used as a container * for values that can be versioned independently of package versions. * * @public */ export type VersionedValue = { atVersion(version: Version): Versions[Version] | undefined; }; /** * Creates a container for a map of versioned values that implements VersionedValue. * * @public */ export declare function createVersionedValueMap(versions: Versions): VersionedValue;