import type { UmbDictionaryCollectionFilterModel, UmbDictionaryCollectionModel } from '../types.js'; import type { UmbCollectionDataSource } from '../../../core/collection/index.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; import type { UmbDataSourceResponse, UmbPagedModel } from '../../../core/repository/index.js'; /** * A data source that fetches the dictionary collection data from the server. * @class UmbDictionaryCollectionServerDataSource * @implements {UmbCollectionDataSource} */ export declare class UmbDictionaryCollectionServerDataSource implements UmbCollectionDataSource { #private; /** * Creates an instance of UmbDictionaryCollectionServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbDictionaryCollectionServerDataSource */ constructor(host: UmbControllerHost); /** * Gets the dictionary collection filtered by the given filter. * @param {UmbDictionaryCollectionFilterModel} query - The filter to apply to the collection. * @returns {Promise>>} The dictionary collection. * @memberof UmbDictionaryCollectionServerDataSource */ getCollection(query: UmbDictionaryCollectionFilterModel): Promise>>; }