import type { AdminRoutePageProps } from "@voyant-travel/admin"; /** * Packaged admin page for a single Quote (packaged-admin RFC Phase 3). The * detail is a STAGED editor: every card edits a local draft and nothing * persists until "Save", which commits the quote fields, line-item and * traveler diffs, then snapshots a new proposal version that supersedes the * prior one. "Discard" reverts to the loaded state. The quote value is derived * from the draft's line items. Client/owner data flows through * relationships-react / auth-react; links resolve via the shared * `person.detail` / `organization.detail` semantic destinations. */ export default function QuoteDetailPage({ params }: AdminRoutePageProps): import("react").JSX.Element;