import * as React from 'react'; /** * FormMessage component props */ export type FormMessageProps = React.HTMLAttributes; /** * FormMessage component - Displays error messages for form fields * * Automatically shows validation errors from React Hook Form. * Accessible with proper ARIA attributes for screen readers. * * @example * ```tsx * ( * * Email * * * * * * )} * /> * ``` * * @example Custom error message * ```tsx * Custom validation message * ``` */ export declare function FormMessage({ ref, className, children, ...props }: FormMessageProps & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=FormMessage.d.ts.map