import type { Snippet } from 'svelte'; type Orientation = 'vertical' | 'horizontal' | 'both'; interface ScrollAreaProps { children?: Snippet; maxHeight?: string | number; maxWidth?: string | number; orientation?: Orientation; hideScrollbar?: boolean; class?: string; } declare const ScrollArea: import("svelte").Component; type ScrollArea = ReturnType; export default ScrollArea;