import type { UmbControllerHost } from '../../../../../../libs/controller-api/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 {string} unique * @param {(string | null)} targetUnique * @param args * @returns {*} * @memberof UmbMoveDocumentBlueprintServerDataSource */ moveTo(args: UmbMoveToRequestArgs): Promise>; }