export declare class Lazy { private factory; private promise; constructor(factory: () => T); readonly Value: T; }