export declare class Lazy<T> {
    private factory;
    private x?;
    constructor(factory: () => T);
    get value(): T;
}
