import { ConversationContext } from "../types.js"; /** * 判断输入是否为命令(以 / 开头) */ export declare function isCommand(input: string): boolean; /** * 分发命令 * @returns true 表示是命令且已处理,false 表示不是命令 */ export declare function dispatchCommand(ctx: ConversationContext): Promise; /** * 获取所有命令名称列表(用于提示信息) */ export declare function getCommandNames(): string[]; //# sourceMappingURL=index.d.ts.map