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