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