/** * Default Worktree Configuration * * Defines which roles need worktrees and default worktree settings. */ import type { WorktreeConfig } from '../types.js'; /** * Roles that need isolated worktrees by default */ export declare const ROLES_NEEDING_WORKTREE: Set; /** * Check if a role needs a worktree */ export declare function roleNeedsWorktree(role: string, configOverride?: boolean): boolean; /** * Default worktree configuration */ export declare const DEFAULT_WORKTREE_CONFIG: WorktreeConfig; /** * Merge user config with defaults */ export declare function mergeWorktreeConfig(userConfig?: Partial): WorktreeConfig; //# sourceMappingURL=worktree-defaults.d.ts.map