import type { UmbElementRecycleBinTreeItemModel } from '../types.js'; import { UmbTreeServerDataSourceBase } from '../../../core/tree/index.js'; import type { ElementRecycleBinItemResponseModel } from '../../../core/backend-api/index.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; /** * A data source for the Element Recycle Bin tree that fetches data from the server * @class UmbElementRecycleBinTreeServerDataSource * @implements {UmbTreeDataSource} */ export declare class UmbElementRecycleBinTreeServerDataSource extends UmbTreeServerDataSourceBase { /** * Creates an instance of UmbElementRecycleBinTreeServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbElementRecycleBinTreeServerDataSource */ constructor(host: UmbControllerHost); }