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