import type { RouteContext } from '../router.js'; interface DashboardSession { title?: string; created?: string; msgCount?: number; ageHours?: number; } interface DashboardResponse { sessions?: DashboardSession[]; } type DashboardFetcher = (url: string) => Promise; export declare function handleSessionsCommand(_args: string, _ctx: RouteContext, fetchDashboard?: DashboardFetcher): Promise; export {}; //# sourceMappingURL=sessions.d.ts.map