import React from "react"; export declare const scrollRowContainerClass: string; /** * This component is useful for grouping items, usually columns, into a single * row IFF the screen width is determined to be mobile. If it is not mobile layout, * this component is trasparent. */ export declare const ScrollRow: React.SFC<{ maxWidth?: string; minWidth?: string; preventShrink?: boolean; /** An additional classname to apply when scrolling is triggered */ scrollClassName?: string; }>; export default ScrollRow;