import { type Reducer } from './types.js'; import { type Action, type Graph, type Resolver } from 'graph/index.js'; import { type ValidatorSet } from 'validator/index.js'; export declare const makeMachine: ({ initialState, reducer, resolver, validators, }: MachineParams) => (graph: Graph) => S; type MachineParams = { initialState: S; reducer: Reducer; resolver: Resolver; validators?: ValidatorSet; }; export {}; //# sourceMappingURL=makeMachine.d.ts.map