import React from 'react'; import { RemoteBranchMatch } from '../types/index.js'; interface RemoteBranchSelectorProps { branchName: string; matches: RemoteBranchMatch[]; onSelect: (selectedRemoteRef: string) => void; onCancel: () => void; } declare const RemoteBranchSelector: React.FC; export default RemoteBranchSelector;