import { Ref } from 'react'; import { FormFieldStateMessageProps } from './FormFieldStateMessage'; export type FormFieldAlertMessageProps = Omit & { ref?: Ref; }; export declare const FormFieldAlertMessage: { ({ ref, ...props }: FormFieldAlertMessageProps): import("react").JSX.Element; displayName: string; };