import { type ScrollViewArrowsAriaLabelType, type ScrollViewArrowsScrollStepType } from '../../types'; export interface UseScrollViewArrowsReturn { arrows: Array<{ icon: string; label: string; step: ScrollViewArrowsScrollStepType; }>; } export declare const useScrollViewArrows: (isHorizontal: boolean, ariaLabelArrows?: ScrollViewArrowsAriaLabelType, scrollStep?: ScrollViewArrowsScrollStepType) => UseScrollViewArrowsReturn;