import { ScrollArea as ScrollAreaPrimitive } from '@base-ui/react/scroll-area'; type ScrollAreaType = "auto" | "always" | "hover" | "scroll"; declare function ScrollArea({ className, children, type, orientation, ...props }: ScrollAreaPrimitive.Root.Props & { type?: ScrollAreaType; /** * Which scrollbar(s) to render. Defaults to `vertical`; use `horizontal` * for a single row that overflows sideways (e.g. a chip strip), or `both` * for a 2-axis area. */ orientation?: "vertical" | "horizontal" | "both"; }): import("react").JSX.Element; declare function ScrollBar({ className, orientation, ...props }: ScrollAreaPrimitive.Scrollbar.Props): import("react").JSX.Element; export { ScrollArea, ScrollBar }; //# sourceMappingURL=scroll-area.d.ts.map