import * as React from 'react'; /** * ScrollRegion — keyboard-accessible overflow container. * * Satisfies axe `scrollable-region-focusable` (Safari keyboard scroll parity). * Use for any clipped `overflow-*` region that is not already a DS primitive * (`HorizontalScrollRegion`, `ScrollArea`, `Table`, `CardScrollRegion`). */ type ScrollRegionProps = React.ComponentProps<"div"> & { /** Accessible name for the scroll viewport. */ label: string; }; declare const ScrollRegion: React.ForwardRefExoticComponent & React.RefAttributes>; export { ScrollRegion, type ScrollRegionProps };