export declare type Transitions = { [K in keyof T]: Set>; }; interface MachineFactory { (transitions: Transitions): (initialState: keyof T) => [keyof T, (state: keyof T) => void]; } export declare const createMachine: MachineFactory; export {}; //# sourceMappingURL=createMachine.d.ts.map