export interface SwipeListScroll { scrollLeft: () => void; scrollRight: () => void; scrollTo: (idx: number, options?: ScrollIntoViewOptions) => void; canScrollLeft: boolean; canScrollRight: boolean; visibleIndicesRange: [number, number]; handleVisibleIndicesChange: (indices: number[]) => void; } interface SwipeListScrollProps { itemCount: number; onVisibleIndicesChange?: (indices: number[]) => void; } export declare const useSwipeListScroll: ({ itemCount, onVisibleIndicesChange, }: SwipeListScrollProps) => [containerRef: { current: E | null; }, scroll: SwipeListScroll]; export {};