import Api from "../../Api"; import { BaseService } from "../BaseService"; export declare class DictService extends BaseService { private url; constructor(api: Api); set(key: string, value: any): Promise; get(key: string): Promise; setMany(data: Record): Promise; getMany(keys: string[] | string): Promise>; deleteOne(key: string): Promise; deleteMany(keys: string[]): Promise; deleteAll(): Promise; pairs(): Promise[]>; incr(key: string): Promise; decr(key: string): Promise; }