import * as Notifications from "expo-notifications";
declare const useExpoPushNotifications: ({ onNotificationReceived, onNotificationInteraction, }: {
    onNotificationReceived: (notification: Notifications.Notification) => void;
    onNotificationInteraction: (notificationResponse: Notifications.NotificationResponse) => void;
}) => void;
export default useExpoPushNotifications;
