import { Command } from "commander"; /** * Create the `skaile session` command group. * * Manages the sessions stored under `.skaile/sessions/` in a project directory. * Subcommands: `list` (tabular view of all sessions with status and age), * `show ` (full JSON dump of a single session), `switch ` * (update the current session pointer), `delete ` (remove the session * file). All subcommands accept `--project-dir` to target a different directory. * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/session#make-session-command */ export declare function makeSessionCommand(): Command; //# sourceMappingURL=session.d.ts.map