/** * Thrown when a Machine state transition is invalid for the current status. */ export declare class MachineTransitionError extends Error { readonly name = "MachineTransitionError"; constructor(method: string, status: string); }