export interface UseAdminBookingPaymentsOptions { enabled?: boolean; } /** * Admin variant of `usePublicBookingPayments`. Same response shape; * targets the admin endpoint so a staff session is authorized to * read. Use this from the operator dashboard's booking detail page; * the customer-portal stays on the public hook. */ export declare function useAdminBookingPayments(bookingId: string | null | undefined, options?: UseAdminBookingPaymentsOptions): import("@tanstack/react-query").UseQueryResult, Error>;