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