export interface ContractDetailHostProps { id: string; } /** * Packaged admin host for the operator-grade contract detail page * (packaged-admin RFC Phase 3). Owns everything package-clean: * * - Data access through `@voyant-travel/legal-react` / `@voyant-travel/relationships-react` / * `@voyant-travel/bookings-react` hooks (shared Voyant provider context — no * app RPC client). * - Admin chrome breadcrumbs (`Legal › Contracts › `) * with hrefs resolved through the `legal.home` / `contract.list` * semantic destinations. * - Reference cells (person, booking, template version, number series) * resolve operator-friendly labels; person/booking link through the * `person.detail` / `booking.detail` destinations. * - The attachment download href is built from the shared legal provider * context's `baseUrl` instead of a host env helper. */ export declare function ContractDetailHost({ id }: ContractDetailHostProps): import("react").JSX.Element;