/** * Representation of a single value * * @export * @class Value */ export declare class Value { readonly value: unknown; protected static cache: Map; /** * Creates an instance of Value * * @param {unknown} value * @memberof Value */ constructor(value: unknown); /** * Create (or re-use) a Value instance representing a value * * @static * @param {unknown} value * @returns {Value} * @memberof Value */ static from(value: unknown): Value; }