/** * @file index.tsx * * @fileoverview InlineError component. */ /// export interface InlineErrorProps { /** * The message to be displayed in the error message. */ message: string; } /** * A message that is shown bellow a input when the input has an error. This message is a way for the user to get immediate feedback on form items * that error for example on blur. */ export declare const InlineError: (props: InlineErrorProps) => JSX.Element; export default InlineError;