export default SectionMessage; /** * Show an event-based message to the user * @todo Document examples * @example * // Blah blah… * */ declare function SectionMessage(props: any): import("react/jsx-runtime").JSX.Element; declare namespace SectionMessage { const propTypes: { isVisible: PropTypes.Requireable; onDismiss: PropTypes.Requireable<(...args: any[]) => any>; canDismiss: PropTypes.Requireable; children: PropTypes.Validator>; className: PropTypes.Requireable; scope: PropTypes.Requireable; type: PropTypes.Validator; }; const defaultProps: { className: string; canDismiss: boolean; isVisible: boolean; onDismiss: () => void; scope: string; }; } import PropTypes from "prop-types";