register_deactivation_hook argument -> pass arguments in the selected function

Use a complete function as callback, so you can pass the argument to the method. Example:

register_deactivation_hook( 
    __FILE__,
    function() {
        $cpt = new Cpt;
        $cpt->delete_cpt( 'post_type_name' );
    }
);