import { type IWorkspaceStylingService } from "@gooddata/sdk-backend-spi"; import { type IColorPaletteItem, type ITheme, type ObjRef } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../../types/index.js"; export declare class TigerWorkspaceStyling implements IWorkspaceStylingService { private readonly authCall; readonly workspace: string; private settingsService; constructor(authCall: TigerAuthenticatedCallGuard, workspace: string); /** * Checks if Theming needs to be loaded. * activeTheme needs to be defined * * @returns boolean */ private isStylizable; getColorPalette: () => Promise; getTheme: () => Promise; private getActiveSetting; getActiveTheme: () => Promise; setActiveTheme(themeRef: ObjRef): Promise; getActiveColorPalette: () => Promise; setActiveColorPalette(colorPaletteRef: ObjRef): Promise; clearActiveTheme(): Promise; clearActiveColorPalette(): Promise; } //# sourceMappingURL=index.d.ts.map