export declare class Lazy { private getValue; private cached?; constructor(getValue: () => T); get value(): T; }