import type { UmbDictionaryTreeItemModel } from './types.js'; import { UmbTreeServerDataSourceBase } from '../../core/tree/index.js'; import type { UmbControllerHost } from '../../../libs/controller-api/index.js'; import type { NamedEntityTreeItemResponseModel } from '../../core/backend-api/index.js'; /** * A data source for the Dictionary tree that fetches data from the server * @class UmbDictionaryTreeServerDataSource * @implements {UmbTreeDataSource} */ export declare class UmbDictionaryTreeServerDataSource extends UmbTreeServerDataSourceBase { /** * Creates an instance of UmbDictionaryTreeServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbDictionaryTreeServerDataSource */ constructor(host: UmbControllerHost); }