import type { UmbMemberSearchItemModel, UmbMemberSearchRequestArgs } from './types.js'; import type { UmbSearchDataSource } from '../../../core/search/index.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; import type { UmbDataSourceResponse, UmbPagedModel } from '../../../core/repository/index.js'; /** * A data source for the Rollback that fetches data from the server * @class UmbMemberSearchServerDataSource * @implements {UmbSearchDataSource} */ export declare class UmbMemberSearchServerDataSource implements UmbSearchDataSource { #private; /** * Creates an instance of UmbMemberSearchServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbMemberSearchServerDataSource */ constructor(host: UmbControllerHost); /** * Get a list of versions for a data * @param {UmbMemberSearchRequestArgs} args - The arguments for the search * @returns {Promise>>} The search results. * @memberof UmbMemberSearchServerDataSource */ search(args: UmbMemberSearchRequestArgs): Promise>>; }