You misunderstand something, but it is an easy thing to get confused about.
- SSH = Secure SHell
- SSL = Secure Sockets Layer
ssh/sshd is a standalone client-server application that uses it's own high level protocol (the SSH protocol); SSL is a parallel protocol used with (e.g.) HTTPS servers. Applications which use one or the other may use the same low level ciphers (which you can delimit with the Ciphers option in sshd_config), hence ssh implementations are generally linked to libssl (which actually implements the ciphers1), but the high level protocol used for secure shell communication is neither SSL nor TLS.
You can set which versions of the ssh protocol to accept, (see the Protocol option in man sshd_config) but the default is already the most secure.
1. TBH I'm not positive that's the reason for the linkage, but point being, it's not in order to use the SSL protocol.