import type { State } from "../../state/state.js"; import { EntityActionDefinition } from "../entity/entityAction.js"; import { MessageActionDefinition } from "../message/messageAction.js"; export type CompoundActionChild = EntityActionDefinition | MessageActionDefinition; /** * @ignore */ export declare function canActionBeInCompound(o: unknown): o is CompoundActionChild;