import { ScrollAreaProps } from './scroll-area.types'; /** * # ScrollArea * * A scrollable container with custom-styled scrollbar overlays. * Replaces native scrollbars with themed overlay indicators that appear * on hover or during scrolling. * * Built on Chakra UI's ScrollArea (powered by Ark UI) with Nimbus * design tokens and keyboard accessibility. * * @supportsStyleProps * * @see {@link https://nimbus-documentation.vercel.app/components/layout/scroll-area} * * @example * ```tsx * * {content} * * ``` */ export declare const ScrollArea: { (props: ScrollAreaProps): import("react/jsx-runtime").JSX.Element; displayName: string; };