import { ICacheAdapter } from './ICacheAdapter'; import { ICacheGetOptions, ICacheSetOptions } from './ICacheOptions'; export declare class CacheBin { readonly name: string; readonly store: ICacheAdapter; constructor(name: string, adapter: ICacheAdapter); get(key: string, bin: string, options?: ICacheGetOptions): Promise; set(key: string, value: any, bin: string, options?: ICacheSetOptions): Promise; }