export interface CreateWorktreeOptions { repoPath: string; worktreePath: string; baseRef: string; branch?: string; } export declare class GitWorktreeService { assertGitRepo(repoPath: string): Promise; isGitRepo(repoPath: string): Promise; createWorktree(options: CreateWorktreeOptions): Promise; ensurePathInsideRepo(repoPath: string, candidatePath: string): void; }