import { GraphInterface } from '../interfaces/graph.interface'; import { TransitionInterface } from '../interfaces/transition.interface'; import { StateMachineException } from './state-machine.exception'; export declare class TransitionCantBeAppliedException extends StateMachineException { readonly subject: T; readonly graph: GraphInterface; readonly fromState: string; readonly transition: TransitionInterface; constructor(subject: T, graph: GraphInterface, fromState: string, transition: TransitionInterface); }