import Share from 'react-native-share'; // $ExpectType Promise Share.open({ url: '', message: '', }); // $ExpectType Promise Share.open({ url: '', type: '', message: '', title: '', subject: '', excludedActivityTypes: '', showAppsToview: true, }); // $ExpectType Promise Share.shareSingle({ url: '', message: '', social: 'facebook', }); // $ExpectType Promise Share.shareSingle({ url: '', type: '', message: '', title: '', subject: '', social: 'facebook', });