import * as React from 'react'; import type { BackgroundLevel } from '../../../theme/theme'; import type { BaseScrollableProps } from './base_scrollable'; type IndicatorType = 'shadow' | 'fade'; type ScrollableWithIndicatorProps = Pick & { type: IndicatorType background: BackgroundLevel }; export type Indicator = { type: IndicatorType background?: BackgroundLevel }; export declare const ScrollableWithIndicator: (props: ScrollableWithIndicatorProps) => React.JSX.Element; export {};