import { MetaCar } from "./metacar"; import { embeddedUrlI } from "./embedded"; import { MetaCarEditor } from "./metacar_editor"; import { BasicMotionEngine } from "./basic_motion_engine"; import { ControlMotionEngine } from "./control_motion_engine"; declare const metacar: { env: typeof MetaCar; editor: typeof MetaCarEditor; level: embeddedUrlI; motion: { BasicMotion: typeof BasicMotionEngine; ControlMotion: typeof ControlMotionEngine; }; }; export default metacar;