/** * Create a function that caches the result up to the limit. */ export declare function cacheWrapper any>(handler: T, limit?: number): T;