import type { UmbControllerHost } from '../../../../../libs/controller-api/index.js'; import type { UmbMoveDataSource, UmbMoveToRequestArgs } from '../../../../core/tree/index.js'; /** * Move Element Server Data Source * @class UmbMoveElementServerDataSource */ export declare class UmbMoveElementServerDataSource implements UmbMoveDataSource { #private; /** * Creates an instance of UmbMoveElementServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbMoveElementServerDataSource */ constructor(host: UmbControllerHost); /** * Move an item for the given id to the target unique * @param {UmbMoveToRequestArgs} args - The move to request arguments * @returns {Promise} The result of the move operation * @memberof UmbMoveElementServerDataSource */ moveTo(args: UmbMoveToRequestArgs): Promise>; }