/**
* The type of mode that an engine can be in.
* ONLY ONE MODE can be used at one time
*/export declare enumEngineMode {
Off = "off",
Loading = "loading",
Idling = "idling",
Parsing = "parsing",
Manipulating = "manipulating"
}
exportdefault EngineMode;