import { ScrollbarRef } from '../scrollbar';
export interface UseSliderProps {
    options?: ScrollIntoViewOptions;
}
export declare const useSlider: ({ options, }: UseSliderProps) => {
    isLeftDisabled: boolean;
    isRightDisabled: boolean;
    onScrollLeft: () => void;
    onScrollRight: () => void;
    scrollbarRef: import("react").RefObject<ScrollbarRef | null>;
};
