Is RSA "decryption" key a thing? It should be a key pair that allows for both encryption and decryption (though you may just care about one use case).
You can sign with an RSA private key, then validate the signature with the public key.
The two pairs of operations are very similar, but not quite the same due to differences in how padding is handled.
Is RSA "decryption" key a thing? It should be a key pair that allows for both encryption and decryption (though you may just care about one use case).