export declare class LazyInitializedSingleton { private factory; private _value; constructor(factory: () => ValueType); get value(): ValueType; }