import { ApiHelpers } from "./ApiHelpers"; export declare class DictionaryApiHelper { api: ApiHelpers; constructor(api: ApiHelpers); get(id: string): Promise; doesExist(id: string): Promise; create(name: string, translations?: { isoCode: string; translation: string; }[], parentId?: string): Promise; update(id: string, dictionary: object): Promise; delete(id: string): Promise; getAllAtRoot(): Promise; getItems(ids: string[]): Promise; getChildren(id: string): Promise; private recurseDeleteChildren; private recurseChildren; getByName(name: string): Promise; doesNameExist(name: string): Promise; ensureNameNotExists(name: string): Promise; export(id: string, includeChildren: boolean): Promise; import(temporaryFileId: string, parentId: string): Promise; createDefaultDictionary(name: string): Promise; }