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