import { ICacheGetOptions, ICacheSetOptions } from './ICacheOptions'; export declare const CACHE_NAME = "Cache"; export interface ICache { get(key: string, bin?: string, options?: ICacheGetOptions): Promise; set(key: string, value: any, bin?: string, options?: ICacheSetOptions): Promise; }