import * as React from "react"; import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area"; interface ScrollAreaProps extends React.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 ScrollArea: React.ForwardRefExoticComponent>; declare const ScrollBar: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { ScrollArea, ScrollBar }; //# sourceMappingURL=scroll-area.d.ts.map