import { SwappableSettingsStorageInterface } from './entities/swappable-settings-storage.interface'; export declare class SwappableSettingsService { private readonly storage; private readonly prefix; constructor(storage: SwappableSettingsStorageInterface); get(key: string): Promise; set(key: string, value: string, redisEx?: string, redisTtl?: number): Promise; delete(key: string): Promise; }