import { default as React } from 'react'; export interface ScrollAreaProps { /** Scrollable content */ children: React.ReactNode; /** Maximum height */ maxHeight?: string | number; /** Hide scrollbar */ hideScrollbar?: boolean; /** Scroll direction */ direction?: 'vertical' | 'horizontal' | 'both'; /** Additional className */ className?: string; } /** * ScrollArea Component * * Container with custom scrollbar styling and overflow control. * Provides consistent scrollable areas across the application. * * @example * ```tsx * *
Long content...
*
* ``` * * @example * ```tsx * *
Wide content
*
* ``` */ export declare const ScrollArea: React.FC; //# sourceMappingURL=scroll-area.d.ts.map