import type { UmbControllerHost } from '../../../../../libs/controller-api/index.js'; import type { UmbMoveDataSource, UmbMoveToRequestArgs } from '../../../../core/tree/index.js'; import type { UmbDataSourceErrorResponse } from '../../../../core/repository/index.js'; /** * Move Dictionary Server Data Source * @class UmbMoveDictionaryServerDataSource */ export declare class UmbMoveDictionaryServerDataSource implements UmbMoveDataSource { #private; /** * Creates an instance of UmbMoveDictionaryServerDataSource. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbMoveDictionaryServerDataSource */ 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 UmbMoveDictionaryServerDataSource */ moveTo(args: UmbMoveToRequestArgs): Promise; }