declare const ufo: { Info: { name: string; description: string; }; Body: { type: string; params: { parts: ({ geometry: { type: string; params: { radius: number; height: number; pivot: string; }; }; material: { type: string; params: { color: string; }; }; localPosition?: undefined; } | { geometry: { type: string; params: { radius: number; pivot: string; height?: undefined; }; }; material: { type: string; params: { color: string; }; }; localPosition: number[]; })[]; }; }; Health: { value: number; }; MotionSource: { type: string; params: { speed: number; jumpHeight: number; canFly: boolean; }; }; Rules: { trigger: { type: string; }; actions: { type: string; params: { offset: number[]; }; target: string; }[]; }[]; }; export default ufo; //# sourceMappingURL=ufo.d.ts.map