import type { SessionsRegistry, ManagedSession } from "../core/types.js"; export interface DeleteManagedSessionOptions { env?: NodeJS.ProcessEnv; } export interface DeletedSession { id: string; title: string; } export interface DeletedSubagentSessions extends DeletedSession { count: number; } export declare function deleteManagedSession(id: string, options?: DeleteManagedSessionOptions): Promise; export declare function deleteManagedSubagentSessions(id: string, options?: DeleteManagedSessionOptions): Promise; export declare function resolveSession(registry: SessionsRegistry, id: string | undefined): ManagedSession; export declare function removeSessions(registry: SessionsRegistry, sessions: ManagedSession[], path: string, env: NodeJS.ProcessEnv): Promise;