import { Serializable } from 'child_process'; import { Client } from '../../Manager/Client'; export declare class RemoteClientCache { options: { path: string; maxSize: number; }; client: Client; constructor(client: Client, options: { path: string; maxSize: number; }); set(key: string, value: Serializable): Promise; get(key: string): Promise; delete(key: string): Promise; clear(): Promise; } //# sourceMappingURL=RemoteClientCache.d.ts.map