import { ICacheClient } from '@gomomento/sdk-core'; import { BatchDeleteOptions, BatchDeleteResponse, BatchGetOptions, BatchGetResponse, BatchSetOptions, BatchSetResponse, BatchSetItem, defaultMaxConcurrentRequests, defaultTtlSeconds } from './batch-props'; export { BatchDeleteOptions, BatchDeleteResponse, BatchGetOptions, BatchGetResponse, BatchSetOptions, BatchSetResponse, BatchSetItem, defaultMaxConcurrentRequests, defaultTtlSeconds, }; export declare function batchGet(cacheClient: ICacheClient, cacheName: string, keys: Array, options?: BatchGetOptions): Promise; export declare function batchSet(cacheClient: ICacheClient, cacheName: string, items: Array, options?: BatchSetOptions): Promise; export declare function batchDelete(cacheClient: ICacheClient, cacheName: string, keys: Array, options?: BatchDeleteOptions): Promise;