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