import { ReactNode, WheelEvent } from 'react'; import CSS from 'csstype'; declare function HorizontalButtonScroller({ children, onLeft, onRight, className, style, buttonClassName, buttonStyle, useOnWheel }: { children: ReactNode; onLeft: () => void; onRight: () => void; className?: string; style?: CSS.Properties; buttonClassName?: string; buttonStyle?: CSS.Properties; onWheel?: (e: WheelEvent) => void; useOnWheel?: boolean; }): JSX.Element; export default HorizontalButtonScroller;