export interface PreviewBranch { name: string; worktree?: string; } export interface PreviewRepository { branches: PreviewBranch[]; currentBranch: string | null; defaultBranch: string | null; } /** Git owns this inventory: request-supplied paths never become worktrees. */ export declare function previewRepository(directory: string): Promise; export declare function branchWorktree(directory: string, branch: string): Promise; //# sourceMappingURL=branches.d.ts.map