/** * ChannelReplyTool — auto-registered system tool for two-way channel communication. * * When a channel is declared with `twoWay: true`, this tool is dynamically * registered so Claude Code can send replies back through the channel. * * Pattern follows SendElicitationResultTool — system tool registered dynamically. */ import type { CallToolResult } from '@frontmcp/protocol'; import { ToolContext } from '../../common'; import { type ChannelReplyInput } from './reply.types'; export declare class ChannelReplyTool extends ToolContext { execute(input: ChannelReplyInput): Promise; } //# sourceMappingURL=channel-reply.tool.d.ts.map