import { StateMachinesDescription } from '../types/StateMachineDescription';
import { StateMachine } from './StateMachine';
export declare class StateMachines {
    private readonly _stateMachines;
    private constructor();
    static create(stateMachines: StateMachinesDescription): StateMachines;
    getStateMachineBy(name: string): StateMachine;
    get stateMachines(): StateMachine[];
}
