import type { TErrorState } from "../../../query/types/index.js"; import { MachineBase } from "./MachineBase.js"; import { MachinePending } from "./MachinePending.js"; export declare class MachineError extends MachineBase { readonly status: "error"; readonly state: TErrorState; constructor(state: TErrorState); /** error → pending (keeps the retried error, marks `isRetrying`) */ retry(): MachinePending; }