import React from 'react'; type Props = { onBranchSubmit: (branchName: string) => void; onError: (error: string) => void; }; declare const BranchName: React.FC; export default BranchName;