import React from 'react'; interface DeleteWorktreeProps { projectPath?: string; onComplete: (worktreePaths: string[], deleteBranch: boolean) => void; onCancel: () => void; } declare const DeleteWorktree: React.FC; export default DeleteWorktree;