export default SidebarDividerNext; /** A divider within the sidebar that supports inner and full mode */ declare class SidebarDividerNext extends React.PureComponent { static displayName: string; static propTypes: { /** Applied as data-hook HTML attribute that can be used in the tests */ dataHook: PropTypes.Requireable; /** Indicates whether to remove the margin from sides */ fullWidth: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); render(): React.JSX.Element; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SidebarDividerNext.d.ts.map