import { z } from "zod"; import { BaseTool } from "../base.js"; import type { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; export declare const getChannelStatisticsSchema: z.ZodObject<{ channelIds: z.ZodArray; }, z.core.$strip>; export declare class GetChannelStatisticsTool extends BaseTool { name: string; description: string; schema: z.ZodObject<{ channelIds: z.ZodArray; }, z.core.$strip>; protected executeImpl(params: z.infer): Promise; }