import React, { Component } from 'react'; import './ItemsSlider.css'; interface ItemSliderProps { children: React.ReactNode; id: string; rtl: boolean; top: string; fontSize: string; color: string; noNavButtons: boolean; } export default class ItemsSlider extends Component { state: { beforeDisable: boolean; nextDisable: boolean; }; componentDidMount(): void; checkForDisabled: (divToScroll: any) => void; scrollWithAnimation: (scrollToNum: number, divToScroll: any) => void; scrollTo: (e: any, direction: string) => void; render(): JSX.Element; } export {};