import { ScrollArea as ScrollAreaPrimitive, type WithoutChild } from "bits-ui"; type $$ComponentProps = WithoutChild & { orientation?: "vertical" | "horizontal" | "both" | undefined; scrollbarXClasses?: string | undefined; scrollbarYClasses?: string | undefined; viewportClasses?: ScrollAreaPrimitive.ViewportProps["class"]; viewportProps?: ScrollAreaPrimitive.ViewportProps; }; declare const ScrollArea: import("svelte").Component<$$ComponentProps, {}, "ref">; type ScrollArea = ReturnType; export default ScrollArea;