import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area'; import { type ComponentPropsWithoutRef } from 'react'; interface ScrollAreaProps extends ComponentPropsWithoutRef { /** * When set to true, the custom Radix scrollbars will be rendered. Defaults to `false` so that * scrollbars remain hidden in accordance with the global requirement to remove scrollbars. */ showScrollbar?: boolean; } declare const ScrollBar: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; declare const ScrollArea: import("react").ForwardRefExoticComponent>; export { ScrollArea, ScrollBar }; //# sourceMappingURL=scroll-area.d.ts.map