import type { UmbDictionaryItemModel } from './types.js'; import { UmbItemServerDataSourceBase } from '../../../core/repository/index.js'; import type { DictionaryItemItemResponseModel } from '../../../core/backend-api/index.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; /** * A server data source for Dictionary items * @class UmbDictionaryItemServerDataSource * @implements {DocumentTreeDataSource} */ export declare class UmbDictionaryItemServerDataSource extends UmbItemServerDataSourceBase { #private; /** * Creates an instance of UmbDictionaryItemServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbDictionaryItemServerDataSource */ constructor(host: UmbControllerHost); getItems(uniques: Array): Promise<{ data: UmbDictionaryItemModel[] | undefined; error: import("../../../core/resources/index.js").UmbApiError | import("../../../core/resources/index.js").UmbCancelError | undefined; }>; }