import { type IUserSettings, type IUserSettingsService } from "@gooddata/sdk-backend-spi"; import { type TigerAuthenticatedCallGuard, type TigerSettingsType } from "../../types/index.js"; import { TigerSettingsService } from "../settings/settings.js"; export declare class TigerUserSettingsService extends TigerSettingsService implements IUserSettingsService { private readonly authCall; private tigerFeatureService; constructor(authCall: TigerAuthenticatedCallGuard); getSettings(): Promise; protected getSettingByType(type: TigerSettingsType): Promise>; protected updateSetting(type: TigerSettingsType, id: string, content: any): Promise; protected createSetting(type: TigerSettingsType, id: string, content: any): Promise; protected deleteSettingByType(type: TigerSettingsType): Promise; } //# sourceMappingURL=settings.d.ts.map