/// import { SCDeviceType } from '@selfcommunity/types'; /** :::info This custom hook is used to manage native push notification: - register device (Android/iOS) - unregister device (Android/iOS) !important: the device is registered only if exist in the global window object (or as keys in the localstorage) the follow: - _platform: `` - _notification_service: `` - _registration_id: `` - _device_id: `` ::: */ export default function useSCMobileNativePushMessaging(): { mnpmInstance: SCDeviceType; setMnpmInstance: import("react").Dispatch>; };