import type { Command } from "commander"; import type { CommandOptions, ListResult, OutputSchema } from "../../output/index.js"; /** Worktree list item for display */ export interface WorktreeListItem { name: string; branch: string; cwd: string; agent: string; } export declare function resolvePaseoHomePath(): string; export declare function resolvePaseoWorktreesDir(): string; /** Schema for worktree ls output */ export declare const worktreeLsSchema: OutputSchema; export type WorktreeLsResult = ListResult; export interface WorktreeLsOptions extends CommandOptions { host?: string; } export declare function runLsCommand(options: WorktreeLsOptions, _command: Command): Promise; //# sourceMappingURL=ls.d.ts.map