export interface InvoiceDetailHostProps { id: string; } /** * Packaged admin host for the operator-grade invoice detail page * (packaged-admin RFC Phase 3). Owns everything package-clean: * * - Data access through `@voyant-travel/finance-react` hooks (shared finance * provider context — no app RPC client). * - Cross-route links resolve through semantic destinations (RFC §4.7): * `invoice.list` (back/after delete), `invoice.detail` (after a proforma * converts), `booking.detail` — no host route tree import. * - Admin widget extension points: the `invoice.details.header` and * `invoice.details.after-summary` slots render through the shared * `AdminWidgetSlotRenderer`, which reads the workspace shell's * `AdminExtensionsProvider` context. */ export declare function InvoiceDetailHost({ id }: InvoiceDetailHostProps): import("react").JSX.Element;