import { z } from '@frontmcp/lazy-zod'; /** * Input schema for the channel reply tool. */ export declare const channelReplyInputSchema: { channel_name: import("@frontmcp/lazy-zod").ZodString; text: import("@frontmcp/lazy-zod").ZodString; meta: import("@frontmcp/lazy-zod").ZodOptional>; }; /** * Input type for the channel reply tool. */ export type ChannelReplyInput = z.infer>; //# sourceMappingURL=reply.types.d.ts.map