import { Command } from "commander"; /** * Build the `skaile session logs ` subcommand. * * Two resolution modes: * - Local (auto when `/.skaile/logs.db` is found): open SQLite RO * and run a filtered SELECT. Zero round-trip. * - Remote (auto when no local DB but a platform URL is configured): call * `workspace.queryLogs` over tRPC. Requires `--project-id`. * * Override auto-detect with `--local` / `--remote`. * * Pass `--tail` to follow new entries after the history snapshot. Local mode * polls the SQLite file every 500ms; remote mode subscribes to the * `workspace.onLogEntry` SSE stream. Ctrl-C exits cleanly with code 0. */ export declare function makeSessionLogsCommand(): Command; //# sourceMappingURL=index.d.ts.map