import { type ElementType } from 'react'; import type { FieldErrorMessageProps } from './types'; /** * Error message for a field. Only renders when the field's `invalid` prop is * `true`. Announced to screen readers via `role="alert"` (which implies * `aria-live="assertive"` and `aria-atomic="true"` per WAI-ARIA 1.2 spec). */ export declare const FieldErrorMessage: { ({ as, children, ref, ...props }: FieldErrorMessageProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; };