import type { ChatElement } from '../../ChatElement'; /** * IChatTool interface for text command operations. * * @public */ export interface IChatTool { attach(chat: ChatElement): void; execute(args: T): boolean; } //# sourceMappingURL=IChatTool.d.ts.map