export declare function memoize<T = unknown>(callback: () => T): () => T;
