import type { EventType } from "./service-event-registry.js"; import type { Settings } from "./store.js"; export interface DeliveryContext { channel?: string; to?: string; accountId?: string; } export declare function resolveNotifyRouting(settings: Pick): { sessionKey: string; deliveryContext?: DeliveryContext; }; export declare function resolveEventRouting(settings: Pick, _eventType: EventType, visible: boolean, _reasonSuffix?: string): { sessionKey: string; deliveryContext?: DeliveryContext; };