import { CacheGet, CacheSet, CacheDelete } from '@gomomento/sdk-core'; export declare const defaultMaxConcurrentRequests = 5; export declare const defaultTtlSeconds = 60; export interface BatchFunctionOptions { maxConcurrentRequests?: number; } export type BatchGetOptions = BatchFunctionOptions; export type BatchGetResponse = Record; export type BatchSetOptions = BatchFunctionOptions; export interface BatchSetItem { key: string | Uint8Array; value: string | Uint8Array; ttl?: number; } export type BatchSetResponse = Record; export type BatchDeleteOptions = BatchFunctionOptions; export type BatchDeleteResponse = Record;