import { type WithElementRef } from 'bits-ui';
import type { HTMLAttributes } from 'svelte/elements';
type Props = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
    orientation?: 'vertical' | 'horizontal' | 'both';
};
declare const ScrollArea: import("svelte").Component<Props, {}, "ref">;
type ScrollArea = ReturnType<typeof ScrollArea>;
export default ScrollArea;
