import type { DictionaryItem, Dictionary } from './interface'; export declare const STATUS: { SUCCESS: number; FAILED: number; FORCE: number; }; export type { Dictionary, DictionaryItem }; export default class DictionaryService { data: Dictionary; setter(dicts: string[]): Promise<{ status: number; }>; get getter(): Dictionary; force(dicts: string[]): Promise<{ status: number; }>; clear(): void; cache(): void; private fetch; }