You’re right, it works. JWT plugin was the problem, deactivating it fixed my trouble.
My code now:
const token = 'my-generated-token';
const result = await wp.url(reactPress.api.rest_url + 'filebird/public/v1/folders')
.setHeaders('Authorization', 'Bearer ' + token);
Thanks for help!