import Component from '../../components/scroller/scroller.js'; /** * @summary Scrollers wrap overflowing content in an accessible container with visual cues that help users recognize and * navigate scrollable regions. * @documentation https://webawesome.com/docs/components/scroller * @status stable * @since 3.0 * * @slot - The content to show inside the scroller. * * @cssproperty [--shadow-color=var(--wa-color-surface-default)] - The base color of the shadow. * @cssproperty [--shadow-size=2rem] - The size of the shadow. * * @csspart content - The container that wraps the slotted content. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; export default reactWrapper;