import { UmbContextToken } from '../../../libs/context-api/index.js'; import type { UmbControllerHost } from '../../../libs/controller-api/index.js'; import { UmbUniqueTreeStore } from '../../core/tree/index.js'; /** * @class UmbDictionaryTreeStore * @augments {UmbUniqueTreeStore} * @description - Tree Data Store for Dictionary Items * @deprecated - Use `UmbDictionaryTreeRepository` instead. This will be removed in Umbraco 18. */ export declare class UmbDictionaryTreeStore extends UmbUniqueTreeStore { /** * Creates an instance of UmbDictionaryTreeStore. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbDictionaryTreeStore */ constructor(host: UmbControllerHost); } export { UmbDictionaryTreeStore as api }; /** * @deprecated - Use `UmbDictionaryTreeRepository` instead. This will be removed in Umbraco 18. */ export declare const UMB_DICTIONARY_TREE_STORE_CONTEXT: UmbContextToken;