import type { UmbScriptDetailModel } from '../../types.js'; import type { UmbControllerHost } from '../../../../../libs/controller-api/index.js'; import type { UmbDataSourceResponse } from '../../../../core/repository/index.js'; export declare class UmbRenameScriptServerDataSource { #private; constructor(host: UmbControllerHost); /** * Rename Script * @param {string} unique - The unique identifier of the script to rename * @param {string} name - The new name for the script * @returns {UmbDataSourceResponse} The renamed script, or an error * @memberof UmbRenameScriptServerDataSource */ rename(unique: string, name: string): Promise>; }