export declare function createLazy(f: () => A): () => A; export declare function createAsyncLazy(f: () => Promise): () => Promise;