/** * Tracks whether the Buy Box carousel has been scrolled at least once. * Once scrolled, the left arrow becomes permanently visible, * since the carousel loops and "going back" is always possible. */ export declare const useBuyBoxScrollState: () => { hasScrolled: boolean; markScrolled: () => void; };