import { HTMLAttributes, ReactNode } from 'react'; export interface ScrollAreaProps extends HTMLAttributes { /** Scroll axis. Default `"vertical"` (every real call site scrolls vertically). */ orientation?: "vertical" | "horizontal" | "both"; /** Convenience max-height; alternatively pass `max-h-*` via `className`. */ maxHeight?: number | string; children?: ReactNode; } /** * ScrollArea — a token-styled scrollable container. Pure CSS (no Radix; the kit * is radix-free), so it just wraps a native overflow container and paints a * thin, theme-aware scrollbar via the `--scrollbar-*` tokens (tokens.css). * * Real usage is always a vertical scroll with a `max-h-*`/`h-full` + `pr-*` * className — so `className` and `style` pass through untouched; the styled * scrollbar is the only thing this adds over a raw `overflow-auto` div. */ export declare const ScrollArea: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=ScrollArea.d.ts.map