export interface PaymentDetailHostProps { id: string; } /** * Packaged admin host for the payment detail page (packaged-admin RFC * Phase 3). Data access goes through `@voyant-travel/finance-react`; every * cross-route link (`payment.list` back target, person/organization/ * invoice/supplier/booking links) resolves through semantic destinations, * so the page imports no host route tree. */ export declare function PaymentDetailHost({ id }: PaymentDetailHostProps): import("react").JSX.Element;