import type { Client } from '../driver'; import type { JSONAdapterSetOptions } from './types'; export declare class JsonAdapter { protected client: Client; constructor(client: Client); set(key: string, value: any, options?: JSONAdapterSetOptions): Promise; get(key: string): Promise; drop(key: string): Promise; }