/** * Order Bump Hook using TanStack Query * Replaces coordinator pattern with automatic cache invalidation */ export interface UseOrderBumpQueryOptions { checkoutToken: string | null; offerId: string; } export interface UseOrderBumpQueryResult { isSelected: boolean; isToggling: boolean; error: Error | null; toggle: (selected?: boolean) => Promise<{ success: boolean; error?: any; }>; } export declare function useOrderBumpQuery(options: UseOrderBumpQueryOptions): UseOrderBumpQueryResult;