export type WorktreeListEntry = { path: string; branch?: string; headSha?: string; isBare?: boolean; isLocked?: boolean; isDirty?: boolean; }; export type WorktreeListRenderOptions = { total: number; }; export declare function renderWorktreeListTable(worktrees: WorktreeListEntry[], options: WorktreeListRenderOptions): string; export declare function deriveWorktreeStatus(worktree: WorktreeListEntry): string;