import type { SubscriberRuntimeDescriptor } from "@voyant-travel/core"; import type { AnyDrizzleDb } from "@voyant-travel/db"; export declare const TRIPS_PAYMENT_SUBSCRIBER_RUNTIME_KEY: "trips.payment-subscriber.runtime"; export interface TripsPaymentSubscriberRuntime { withDb(operation: (db: AnyDrizzleDb) => Promise): Promise; } export declare const tripsPaymentCompletedSubscriber: SubscriberRuntimeDescriptor;