export declare class Lazy { private readonly _valueFactory; private _value; constructor(valueFactory: () => Promise); isValueCreated(): boolean; getValue(): Promise; } //# sourceMappingURL=Lazy.d.ts.map