export declare type LazyProvider = () => T; export declare namespace Lazy { function create(factory: () => T): LazyProvider; }