import type { DataStore, Profile } from "./interface.js"; export declare class StandaloneStore implements DataStore { list(): Profile[]; get(name: string): Profile | undefined; save(name: string, settingsConfig: Record): void; remove(name: string): boolean; getCurrent(): string | undefined; setCurrent(name: string): void; }