export declare class SmartCache {
    private _cacheManager;
    cacheReturn(asyncCachedFuncArg: () => Promise<any>, cacheDuration?: number): Promise<any>;
}
