export declare class Lazy { private _value; private creator; constructor(creator: () => Promise); readonly hasValue: boolean; value: Promise; }