/*! Copyright 2023 the gnablib contributors MPL-1.1 */
export declare class Lazy<T> {
    private factory;
    private _built;
    private _value;
    constructor(factory: () => T);
    get value(): T;
}
