export interface BootPruneResult { ran: boolean; removedCount: number; skippedReason?: 'not-in-repo' | 'lock-contested' | 'timeout' | 'error' | 'disabled'; } export declare function bootPruneWorktrees(opts?: { disabled?: boolean; }): Promise;