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