import type { Error } from '../../types/shared/form'; export interface InlineMessageProps { /** Content briefly explaining how to resolve the invalid form field input. */ message: Error; /** Unique identifier of the invalid form field that the message describes */ fieldID: string; /** State of the message. Defaut is error */ appearance?: 'success' | 'error' | 'warning' | 'info'; } declare function InlineMessage({ message, fieldID, appearance, }: InlineMessageProps): import("react/jsx-runtime").JSX.Element | null; export { InlineMessage };