export default Event; declare class Event { /** * * @param {Scene} scene */ constructor(scene: Scene); /** * @protected * @type {Scene} */ protected scene: Scene; /** * @protected * @type {FlowEngine} */ protected flow: FlowEngine; /** @protected */ protected onCreate(): void; /** @protected */ protected onFire(): void; /** @protected */ protected onDestroy(): void; get type(): string; } import Scene from "../Scene"; import FlowEngine from "./FlowEngine";