import type { ColorSchemeThemeBasedModel } from '../models/ColorSchemeThemeBasedModel.js'; import type { SpaceColorSchemeTypeModel } from '../models/SpaceColorSchemeTypeModel.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class SpaceColorSchemeService { /** * Get Space color scheme type * Get the current color scheme type used for a space, it can be global or custom * * * @param spaceKey Space key of the space to request color scheme type for. * @returns SpaceColorSchemeTypeModel Returns a color scheme type * @throws ApiError */ static getColorSchemeType(spaceKey: string): CancelablePromise; /** * Update Space color scheme type * Update the color scheme type used for a space, currently it can be global or custom * * * @param spaceKey space key of the space to update color scheme type for. * @param requestBody New color scheme type * @returns SpaceColorSchemeTypeModel Returns the updated color scheme type * @throws ApiError */ static updateColorSchemeType(spaceKey: string, requestBody?: SpaceColorSchemeTypeModel): CancelablePromise; /** * Get Space color scheme * Get information about the current color scheme for a space * * * @param spaceKey space key of the space to request color scheme for. * @returns ColorSchemeThemeBasedModel Returns a full JSON representation of color scheme * @throws ApiError */ static getSpaceColorScheme(spaceKey: string): CancelablePromise; /** * Update Space color scheme * Update the color scheme for a space * * * @param spaceKey space key of the space to set color scheme for. * @param requestBody New color scheme * @returns ColorSchemeThemeBasedModel Returns a full JSON representation of color scheme * @throws ApiError */ static updateSpaceColorScheme(spaceKey: string, requestBody?: ColorSchemeThemeBasedModel): CancelablePromise; /** * Reset Space color scheme * Reset the space color scheme to use global color scheme * * * @param spaceKey Space key of the space to reset color scheme for. * @returns ColorSchemeThemeBasedModel Returns a JSON representation of color scheme * @throws ApiError */ static resetSpaceColorScheme(spaceKey: string): CancelablePromise; } //# sourceMappingURL=SpaceColorSchemeService.d.ts.map