import React from 'react'; type ScrollableRowProps = { children: React.ReactNode; className?: string; scrollClassName?: string; scrollRef?: React.RefObject; scrollAmount?: number; arrowVisibility?: 'hover' | 'always'; arrowClassName?: string; arrowIconClassName?: string; }; export declare function ScrollableRow({ children, className, scrollClassName, scrollRef, scrollAmount, arrowVisibility, arrowClassName, arrowIconClassName, }: ScrollableRowProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=scrollable-row.d.ts.map