import type { PersonDetailBookingsTabContext } from "@voyant-travel/relationships-react/admin"; export type PersonBookingsWidgetProps = PersonDetailBookingsTabContext; /** * The person detail page's Bookings tab, contributed as a widget on * crm-ui's `person.details.bookings-tab` slot (packaged-admin RFC §4.7 * cycle resolution): this package depends on `@voyant-travel/relationships-react/ui`, so the * person detail host cannot import this card — the contribution travels * the widget seam instead. Receives the slot's typed context * (`PersonDetailBookingsTabContext`) as props and opens rows through the * semantic `booking.detail` destination. */ export declare function PersonBookingsWidget({ personId }: PersonBookingsWidgetProps): import("react").JSX.Element;