import React from 'react'; import PropTypes from 'prop-types'; import { SectionProps } from './Section.types'; declare const Section: { ({ title, titleVisible, suffix, children, ariaLabel, dataHook, as, "aria-describedby": ariaDescribedBy, id, }: SectionProps): React.JSX.Element; displayName: string; propTypes: { title: PropTypes.Requireable; titleVisible: PropTypes.Requireable; suffix: PropTypes.Requireable; children: PropTypes.Requireable; ariaLabel: PropTypes.Requireable; dataHook: PropTypes.Requireable; as: PropTypes.Requireable; id: PropTypes.Requireable; 'aria-describedby': PropTypes.Requireable; }; }; export default Section; //# sourceMappingURL=Section.d.ts.map