import { type ProductNotification } from '@xopcai/gateway-contract'; export type NotificationPlan = { dedupeKey: string; notification: Omit; }; export declare function notificationPlanFromGatewayEvent(type: string, payload: unknown): NotificationPlan | null;