/** * Session Browser - Interactive session navigation with actions */ import { SessionStore } from '../session/store.js'; export declare class SessionBrowser { private formatter; private sessionStore; constructor(sessionStore?: SessionStore); /** * Show interactive session browser */ show(): Promise; /** * Show actions for selected session */ private showSessionActions; /** * Resume session action */ private resumeSession; /** * Export session action */ private exportSession; /** * Archive session action */ private archiveSession; /** * Delete session action */ private deleteSession; /** * Group sessions by status */ private groupSessionsByStatus; /** * Format session choice for list */ private formatSessionChoice; /** * Format age (relative time) */ private formatAge; } //# sourceMappingURL=session-browser.d.ts.map