import { Task } from "task-run"; import { Node } from "./Node"; export declare class BehaviorTree { label: string; child: Node; private agentStateSymbol; constructor(); tick(agent: any): Task; private fullTick(agentState); }