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