import { ComponentPropsWithoutRef, Ref } from 'react'; export type FormFieldMessageProps = ComponentPropsWithoutRef<'span'> & { ref?: Ref; }; export declare const FormFieldMessage: { ({ id: idProp, className, ref, ...others }: FormFieldMessageProps): import("react").JSX.Element; displayName: string; };