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