import type { AlertMutationFeedbackProp } from "../../props/components/query.prop.js"; export type { AlertMutationFeedbackProp, AlertMutationFeedbackProp as AlertMutationFeedbackProps, } from "../../props/components/query.prop.js"; /** * Inline mutation error — renders nothing when idle/success. * Prefer toast for transient saves; use this for blocking form sections (SimulatorPage). * Inside a form that received a server error bag (`FormRoot errors` / `Form errors`), a validation * error is the fields' to show, so it is skipped by default (gh#690). */ export declare function AlertMutationFeedback({ mutation, onRetry, showRetry, pending, ignoreValidationErrors, className, }: AlertMutationFeedbackProp): import("react").JSX.Element | null;