import React, { PropsWithChildren } from 'react'; type Props = { scrollStep?: number; scrollSpeed?: number; minScrollDistance?: number; }; /** @public */ export type HorizontalScrollGridClassKey = 'root' | 'container' | 'fade' | 'fadeLeft' | 'fadeRight' | 'fadeHidden' | 'button' | 'buttonLeft' | 'buttonRight'; /** * Horizontal scrollable component with arrows to navigate * * @public * */ export declare function HorizontalScrollGrid(props: PropsWithChildren): React.JSX.Element; export {};