import React from 'react'; import { PushNotificationsConfig } from '../../src/common/DeveloperConfig'; export declare const PushNotificationsContext: React.Context<{}>; export declare function PushNotificationsProvider({ config, children, }: { config?: PushNotificationsConfig; children: React.ReactNode; }): React.JSX.Element; export declare const usePushNotificationsClient: () => {};