import { ECSContext } from "../ecs"; export declare enum AIActionType { NONE = 0, ATTACK = 1, INTERACTWITH = 2,//TODO ESCAPE = 3 } export type AIAction = { targetEid: number | null; type: AIActionType; }; export declare const updateAISystem: (ctx: ECSContext) => void; //# sourceMappingURL=updateAISystem.d.ts.map