export interface UseBookingActionLedgerOptions { /** Page size; the server defaults to 50. */ limit?: number; enabled?: boolean; } /** * Cursor-paged central action-ledger feed for a booking * (`GET /v1/admin/bookings/:id/action-ledger`). Pages merge * booking-targeted, traveler-targeted and item-targeted entries into one * chronological stream; the first page also carries the booking's * travelers so callers can label traveler-targeted entries. */ export declare function useBookingActionLedger(bookingId: string | null | undefined, options?: UseBookingActionLedgerOptions): import("@tanstack/react-query").UseInfiniteQueryResult, Error>;