These permissions are exported as constants of the `rn-apple-healthkit` module.```javascriptimportAppleHealthKitfrom'rn-apple-healthkit';// get the available permissions from AppleHealthKit.Constants objectconstPERMS=AppleHealthKit.Constants.Permissions;// setup healthkit read/write permissions using PERMSconsthealthKitOptions={permissions:{read:[PERMS.StepCount,PERMS.Height,],write:[PERMS.StepCount],}};```