/** * The `` component is used to communicate important information to a user. */ export function InlineNotification({ children, className, kind }: { children: any; className: any; kind?: string | undefined; }): React.FunctionComponentElement>>; export namespace InlineNotification { namespace propTypes { let children: PropTypes.Requireable; let className: PropTypes.Requireable; let kind: PropTypes.Validator; } } import React from 'react'; import PropTypes from 'prop-types';