I think you need to pull the .data
property off the returned promise:
const token = (await Notification.getDeviceTokenPushAsync()).data;
On Android, that will return an FCM token that you can send notifications through FCM. HOwever, on iOS this returns the APN device token, which cannot be used with FCM.