import { AllowedNames } from './types';
export declare class StateMachineTransitionError extends Error {
    constructor(id: string, from: AllowedNames, event: AllowedNames, cause?: unknown);
}
export declare const isStateMachineTransitionError: (error: unknown) => error is StateMachineTransitionError;
//# sourceMappingURL=fsm.error.d.ts.map