import type { Trip } from "../service.js"; import type { TripCheckoutAllocation, TripCheckoutDeps } from "./types.js"; export declare function checkoutPricingForTrip(quoteFx: TripCheckoutDeps["quoteFx"], trip: Trip, request: Record): Promise<{ currency: string; totalAmountCents: number; allocations: TripCheckoutAllocation[]; }>; export declare function buildTripPaymentSummary(trip: Trip, currency: string, allocations?: TripCheckoutAllocation[]): string;