import React from 'react'; import type { Scrollbar } from 'smooth-scrollbar/scrollbar'; import type { ScrollStatus } from 'smooth-scrollbar/interfaces'; declare const SmoothScrollbarReact: React.ForwardRefExoticComponent & { className?: string | undefined; style?: React.CSSProperties | undefined; plugins?: import("./types").ScrollbarPlugin | undefined; onScroll?: ((status: ScrollStatus, scrollbar: Scrollbar | null) => void) | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>; export { SmoothScrollbarReact as Scrollbar };