import { CGMLState, CGMLTransition, CGMLStateMachine } from './import'; export type CGMLTextStateMachine = Omit, 'transitions'> & { states: { [id: string]: CGMLTextState }; transitions: { [id: string]: CGMLTextTransition }; }; export type CGMLTextState = Omit & { actions: string }; export type CGMLTextTransition = Omit & { actions: string };