export declare const createLazy: >(initLazy: (...args: TArgs) => Promise, disposeLazy?: (t: T) => void) => { get: () => T | undefined; getPending: () => Promise | undefined; getOrInit: (...args: TArgs) => Promise; dispose: () => void; }; //# sourceMappingURL=createLazy.d.ts.map