import { GitWorktreeListItem } from "../types/index.js"; export declare function listWorktrees(repoPath: string): Promise; export declare function createWorktree(repoPath: string, worktreePath: string, branch: string, createBranch?: boolean): Promise; export declare function removeWorktree(repoPath: string, worktreePath: string, force?: boolean): Promise; export declare function branchExists(repoPath: string, branchName: string): Promise; export declare function remoteBranchExists(repoPath: string, branchName: string, remote?: string): Promise; export declare function getCurrentBranch(repoPath: string): Promise; export declare function isWorktreeClean(worktreePath: string): Promise; //# sourceMappingURL=git.d.ts.map