export declare function memo(func: () => T): () => T; export declare function asyncMemo(func: () => Promise): () => Promise;