import type { UmbMemberGroupCollectionFilterModel, UmbMemberGroupCollectionItemModel } 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 member group collection data from the server. * @class UmbMemberGroupCollectionServerDataSource * @implements {UmbCollectionDataSource} */ export declare class UmbMemberGroupCollectionServerDataSource implements UmbCollectionDataSource { #private; /** * Creates an instance of UmbMemberGroupCollectionServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbMemberGroupCollectionServerDataSource */ constructor(host: UmbControllerHost); /** * Gets the member group collection filtered by the given filter. * @param {UmbMemberGroupCollectionFilterModel} query The filter to apply to the collection. * @returns {Promise>>} The member group collection. * @memberof UmbMemberGroupCollectionServerDataSource */ getCollection(query: UmbMemberGroupCollectionFilterModel): Promise>>; }