import { UseAppNotificationsDataValues, UseAppNotificationsDataProps } from "../hooks/app-notifications/useAppNotificationsData";
export interface AppNotificationsContextProps extends UseAppNotificationsDataProps {
    children: React.ReactNode;
}
export interface AppNotificationsContextValues extends UseAppNotificationsDataValues {
}
export declare const AppNotificationsContext: import("react").Context<Partial<AppNotificationsContextValues>>;
export declare const AppNotificationsProvider: React.FC<AppNotificationsContextProps>;
