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