import { default as React } from 'react'; type ScrollingContainerProps = { /** The content to be shown inside the component. */ children: React.ReactNode; /** Height of the container */ height?: number | string; /** Optionally hide the top and bottom gradients */ hideGradients?: boolean; /** Optionally use `position: absolute` instead of `position: sticky` */ position?: 'absolute' | 'sticky'; /** Optional prop to add a test id to the ScrollingContainer for QA testing */ qaTestId?: string; }; declare const ScrollingContainer: React.ForwardRefExoticComponent>; export default ScrollingContainer;