import type { CamoucliPaths } from './paths.js'; export interface StoredSessionProfile { profileName: string; rootDir: string; profileDir: string; downloadsDir: string; artifactsDir: string; stored: true; } export interface RemovedStoredSessionProfile { profileName: string; rootDir: string; removed: boolean; } export declare function resolveStoredSessionProfile(paths: CamoucliPaths, profileName: string): StoredSessionProfile; export declare function listStoredSessionProfiles(paths: CamoucliPaths): Promise; export declare function inspectStoredSessionProfile(paths: CamoucliPaths, profileName: string): Promise<(StoredSessionProfile & { found: true; }) | { profileName: string; rootDir: string; found: false; }>; export declare function removeStoredSessionProfile(paths: CamoucliPaths, profileName: string): Promise;