import type { Machine } from './services.types'; /** * Default implementation for the {@link StateMachine}. * * @public */ export declare class StateMachine { /** * A {@link Machine} having the different steps transition. * * @internal */ private machine; /** * The current state of the machine. * * @public */ currentState: SomeStatus; constructor(machine: Machine); /** * Determines which state will be the next to be transitioned. * * @param event - The event to determine which state is the new one to be * transitioned. * * @public */ transition(event: SomeEvent): void; } //# sourceMappingURL=state-machine.service.d.ts.map