Weird Type Error React Native Typescript

Hello guys

Argument of type '{ dsn: string; enableInExpoDevelopment: true; debug: boolean; }' is not assignable to parameter of type 'SentryExpoNativeOptions'.
  Object literal may only specify known properties, and 'dsn' does not exist in type 'SentryExpoNativeOptions'.ts(2345)

I got this error as dns type is not defined in the module… How can i get ride of this message ?

Thanks
React Native
Bare Workflow
RN SDK 41

Sentry.init({
  dsn: "https://mydsn",
  enableInExpoDevelopment: true,
  debug: true, 
});