Excellent, this worked for us!
thanks for your help
We configure the network 10.0.0.0.0/20 as the office mode network for the nat-pool, create the routemap to export static, direct and nat-pool routes and use the routemap to export those routes to the BGP:
set nat-pool 10.0.0.0/20 on
set routemap RM_exp_rts id 100 on
set routemap RM_exp_rts id 100 allow
set routemap RM_exp_rts id 100 match protocol direct
set routemap RM_exp_rts id 200 on
set routemap RM_exp_rts id 200 allow
set routemap RM_exp_rts id 200 match protocol static
set routemap RM_exp_rts id 300 on
set routemap RM_exp_rts id 300 allow
set routemap RM_exp_rts id 300 match protocol nat-pool
set bgp external remote-as 10 export-routemap RM_exp_rts preference 1 on

With this configuration in the firewall, we see that these routes are already being advertised and injected to the Route Table of R1 and R2:


This is fine, it is what we expect.
However, we see that the firewall advertises all its static routes, including the firewall default route:

How do we prevent this firewall default route from being advertised to the BGP?
Is it possible to make an exclusion for this static route?
Greetings!