export interface BookingDocumentsTableProps { bookingId: string; } /** * Unified Documents tab for a booking — flattens auto-generated legal * contracts and per-traveler documents (passport, visa, insurance…) into * a single DataTable that matches the rest of the booking detail tabs. * Contracts render first (canonical booking docs), traveler-uploaded * documents below; each contract row owns its own attachments fetch so * we don't need a join endpoint server-side. */ export declare function BookingDocumentsTable({ bookingId, }: BookingDocumentsTableProps): React.ReactElement;