/** * SvScrollArea - a scroll container with the kit's themed custom scrollbars * (Firefox `scrollbar-color` + Chromium `::-webkit-scrollbar`) consuming the * `--sg-scrollbar-*` tokens, so any panel matches the grid/demos without * hand-rolling scrollbar CSS. The fallbacks derive from `--sg-fg` so it also * adapts to light/dark when no preset defines the tokens. * * ```svelte * …long content… * ``` */ import type { Snippet } from 'svelte'; type Props = { maxHeight?: string; height?: string; /** Scroll horizontally instead of vertically. */ horizontal?: boolean; /** Accessible name for the scrollable region, announced by screen readers. */ ariaLabel?: string; children?: Snippet; }; declare const SvScrollArea: import("svelte").Component; type SvScrollArea = ReturnType; export default SvScrollArea;