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