import { default as React } from 'react'; export interface ScrollableProps { minThumbSize?: number; className?: string; children?: React.ReactNode; ref?: React.Ref; onScroll?: (event: WheelEvent | React.UIEvent) => void; scrollerRef?: React.Ref; /** * If true, will repurpose wheel events for horizontal scroll instead */ verticalAsHorizontal?: boolean; } export declare function Scrollable(props: ScrollableProps): import("react/jsx-runtime").JSX.Element;