import type { UmbLanguageCollectionFilterModel, UmbLanguageCollectionItemModel } from '../types.js'; import type { UmbLanguageDetailModel } 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 language collection data from the server. * @class UmbLanguageCollectionServerDataSource * @implements {UmbCollectionDataSource} */ export declare class UmbLanguageCollectionServerDataSource implements UmbCollectionDataSource { #private; /** * Creates an instance of UmbLanguageCollectionServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbLanguageCollectionServerDataSource */ constructor(host: UmbControllerHost); /** * Gets the language collection filtered by the given filter. * @param {UmbLanguageCollectionFilterModel} filter The filter to apply to the collection. * @returns {UmbDataSourceResponse>} The language collection. * @memberof UmbLanguageCollectionServerDataSource */ getCollection(filter: UmbLanguageCollectionFilterModel): Promise>>; }