// @flow import * as React from 'react'; import InlineNotice from '../inline-notice'; type Props = { children: React.Node, className?: string, /** Title of the inline error. */ title: React.Node, }; const InlineError = (props: Props) => ; export default InlineError;