import React from 'react'; type Props = { onSSHKeySubmit: (sshKey: string, sshUrl: string) => void; onError: (error: string) => void; }; declare const SSHKey: React.FC; export default SSHKey;