import { UseScrollableOptions } from '../../index.ts'; import { ComputedRef } from 'vue'; export declare function useScrollable(options?: ComputedRef>): { containerRef: import('vue').Ref; getPrevButtonProps: ComputedRef<{ onClick: () => void; disabled: boolean; }>; getNextButtonProps: ComputedRef<{ onClick: () => void; disabled: boolean; }>; showNext: () => void; showPrev: () => void; state: import('vue').Ref<{ hasPrev: boolean; hasNext: boolean; isDragged: boolean; }, { hasPrev: boolean; hasNext: boolean; isDragged: boolean; } | { hasPrev: boolean; hasNext: boolean; isDragged: boolean; }>; }; //# sourceMappingURL=useScrollable.d.ts.map