export interface ErrorMessageProps {
    /** The ID of the corresponding input field */
    inputId: string;
    /** The error message for the corresponding input field */
    error: string;
    /** The sucess message for the corresponding input field */
    success?: string;
    /** Validation status */
    status?: "error" | "success";
}
declare const ErrorMessage: {
    ({ inputId, error, success, status }: ErrorMessageProps): any;
    defaultProps: {
        status: string;
        success: string;
    };
};
export default ErrorMessage;
