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