import React, { PropsWithChildren } from "react"; import { HorScroller } from "../../components/HorScroller"; interface IProps extends PropsWithChildren { scrollerRef?: React.MutableRefObject; className?: string; element?: ElementComponent; } export declare function ReactHorScroller(props: IProps): JSX.Element; export {};