import { ScrollArea as ScrollAreaPrimitive } from 'bits-ui'; import { type WithoutChild } from '../../../utils/cn.js'; type $$ComponentProps = WithoutChild & { orientation?: 'vertical' | 'horizontal' | 'both' | undefined; scrollbarXClasses?: string | undefined; scrollbarYClasses?: string | undefined; viewportRef?: HTMLElement | null; }; declare const ScrollArea: import("svelte").Component<$$ComponentProps, {}, "ref" | "viewportRef">; type ScrollArea = ReturnType; export default ScrollArea;