export default CollisionEvent; declare class CollisionEvent { /** * * @param {Scene} scene */ constructor(scene: Scene); /** * @protected * @type {Scene} */ protected scene: Scene; /** * @protected * @type {FlowEngine} */ protected flow: FlowEngine; /** @protected */ protected onCreate(): void; /** @protected */ protected onEnter(bodyA: any, bodyB: any, event: any): void; /** @protected */ protected onExit(bodyA: any, bodyB: any, event: any): void; /** @protected */ protected onDestroy(): void; get type(): string; } import Scene from "../Scene"; import FlowEngine from "./FlowEngine";