import { SwappableSettingsService } from './swappable-settings.service'; export declare class SwappableSettingsController { private readonly swappableSettingsService; constructor(swappableSettingsService: SwappableSettingsService); setSetting(body: { key: string; value: string; }): Promise; getSetting(key: string): Promise; deleteSetting(key: string): Promise; }