import type { CatalogBookingSnapshotRuntime } from "./booking-snapshot-subscriber-runtime.js"; import type { CatalogProjectionRuntime } from "./projection-runtime.js"; /** Host adapter that creates a projection runtime from bootstrap bindings. */ export interface CatalogProjectionRuntimeProvider { createRuntime(bindings: unknown): CatalogProjectionRuntime | Promise; } export interface CatalogBookingSnapshotRuntimeProvider { createRuntime(bindings: unknown): CatalogBookingSnapshotRuntime | Promise; } export declare const catalogProjectionRuntimePort: import("@voyant-travel/core/project").VoyantPort; export declare const catalogBookingSnapshotRuntimePort: import("@voyant-travel/core/project").VoyantPort;