import { EnvProfileStore } from '../env/env-profile-store'; import type Database from 'better-sqlite3'; export interface ProfileStoreContext { db: Database.Database; profileStore: EnvProfileStore; } /** * Open the profile store database with standard initialization. * Returns null if VESS is not initialized (ensureInitialized fails). */ export declare function openProfileStore(command: string): ProfileStoreContext | null; //# sourceMappingURL=cli-db.d.ts.map