import React from 'react'; /** * A horizontally scrolling row with arrows that appear only where there is more * content. * * The forwarded ref and `className` target the outer wrapper (so `Slot` or * drop-target wrapping works); `scrollRef` targets the inner scrolling * container. */ export declare const ScrollableRow: React.ForwardRefExoticComponent<{ children: React.ReactNode; className?: string; scrollClassName?: string; /** * Ref to the inner scrolling container. Replaces the internal ref; the * arrows keep working. */ scrollRef?: React.RefObject; /** Pixels scrolled per arrow activation. Defaults to 200. */ scrollAmount?: number; arrowVisibility?: "hover" | "always"; arrowClassName?: string; arrowIconClassName?: string; } & Omit, HTMLDivElement>, "ref">, "className" | "children"> & React.RefAttributes>; //# sourceMappingURL=scrollable-row.d.ts.map