import type { ColorSchemeThemeBasedModel } from '../models/ColorSchemeThemeBasedModel.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class GlobalColorSchemeService { /** * Get default global color scheme * Get default color scheme for the instance * * * @returns ColorSchemeThemeBasedModel Returns a full JSON representation of color scheme including light and dark theme * @throws ApiError */ static getDefaultColorScheme(): CancelablePromise; /** * Get global color scheme * Get information about the current color scheme for the instance * * * @returns ColorSchemeThemeBasedModel Returns a full JSON representation of color scheme including light and dark theme * @throws ApiError */ static getGlobalColorScheme(): CancelablePromise; /** * Set global color scheme * Update the current color scheme of the instance * * * @param requestBody New color scheme * @returns ColorSchemeThemeBasedModel Returns a full JSON representation of the updated color scheme * @throws ApiError */ static updateColorScheme(requestBody?: ColorSchemeThemeBasedModel): CancelablePromise; /** * Reset global color scheme * Reset the global color scheme colors to default * * * @returns ColorSchemeThemeBasedModel Returns a full JSON representation of color scheme * @throws ApiError */ static resetGlobalColorScheme(): CancelablePromise; } //# sourceMappingURL=GlobalColorSchemeService.d.ts.map