/** A sidebar content children wrapper to add gradient */ export class SidebarContentWrapper extends React.Component { static propTypes: { skin: PropTypes.Requireable; containerDataHook: PropTypes.Requireable; containerClasses: PropTypes.Requireable; children: PropTypes.Requireable; }; static defaultProps: { skin: string; }; constructor(props: any); childrenContainerRef: React.RefObject; childrenContentRef: React.RefObject; state: { isScrollbarDisplayed: boolean; }; childrenResizeObserver: false | ResizeObserver; _handleChildrenResize: () => void; componentDidMount(): void; componentWillUnmount(): void; _shouldAddGradient(): void; render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SidebarContentWrapper.d.ts.map