import type { UmbTemplateSearchItemModel } from './template.search-provider.js'; import type { UmbSearchDataSource, UmbSearchRequestArgs } 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 UmbTemplateSearchServerDataSource * @implements {UmbSearchDataSource} */ export declare class UmbTemplateSearchServerDataSource implements UmbSearchDataSource { #private; /** * Creates an instance of UmbTemplateSearchServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbTemplateSearchServerDataSource */ constructor(host: UmbControllerHost); /** * Get a list of versions for a data * @param {UmbSearchRequestArgs} args - The search arguments * @returns {UmbDataSourceResponse>} The search results * @memberof UmbTemplateSearchServerDataSource */ search(args: UmbSearchRequestArgs): Promise>>; }