import type { BackgroundManager } from "../../features/background-agent"; interface Event { type: string; properties?: Record; } interface EventInput { event: Event; } export declare function createBackgroundNotificationHook(manager: BackgroundManager): { event: ({ event }: EventInput) => Promise; }; export type { BackgroundNotificationHookConfig } from "./types";