import { Type } from "../../type"; import { Command } from "./Command"; import { EventGuard } from "../.."; /** * Definition of sub command executed as a part of MacroCommand */ export declare type SubCommand = { type: Type>; guards?: EventGuard[]; }; export declare const isSubCommand: (entry: unknown) => entry is SubCommand;