import type { CreateNotificationsApiModuleOptions } from "./index.js"; import type { NotificationReminderJobRuntime } from "./job-runtime.js"; export interface NotificationsRuntimeProvider extends CreateNotificationsApiModuleOptions { resolveDb: NonNullable; resolveProviders: NonNullable; resolveReminderJobRuntime: (bindings?: Record) => NotificationReminderJobRuntime; } /** Node-host contract consumed by the package-owned Notifications graph factory. */ export declare const notificationsRuntimePort: import("@voyant-travel/core/project").VoyantPort;