export class StateGraph {
    /**
     *
     * @param {SimpleStateMachine} graph
     */
    constructor(graph: SimpleStateMachine);
    /**
     *
     * @type {SimpleStateMachine}
     */
    graph: SimpleStateMachine;
    inputs: any[];
    declareInputs(state: any, events: any): void;
}
//# sourceMappingURL=StateGraph.d.ts.map