import React from "react";
interface NotificationProviderProps {
    firebaseConfig: Record<string, string>;
    vapidKey: string;
    children: React.ReactNode;
    saveToken: Function;
    triggerApi: Function;
    handleClick: Function;
    handleVisibility: Function;
}
export declare const NotificationProvider: React.FC<NotificationProviderProps>;
export {};
