import type { OutputFormat } from '../types.js'; /** * List sessions, auto-scoped to the current working directory by default. * * The `--cwd ` flag accepts `auto` (default), `current`, `all`, or an * explicit path. The chosen scope is surfaced in the v2 envelope's * `meta.cwd_scope` so callers can reason about why a session list looks * shorter than they expected (e.g. fellback_to_global when no sessions * matched the current directory). */ export declare function listCommand(source?: string, opts?: { limit?: string; offset?: string; search?: string; maxSessions?: string; cwd?: string; json?: boolean; output?: OutputFormat; timing?: boolean; }): Promise; //# sourceMappingURL=list.d.ts.map