import { ICacheProvider } from "../../domain/interfaces/cache-provider.interface"; export declare class MemcacheProvider implements ICacheProvider { private cache; constructor(memcacheUrl: string); get(key: string): Promise; has(key: string): Promise; set(key: string, data: object, ttl: any): Promise; }