import { z } from "zod"; import { BaseTool } from "../base.js"; import type { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; export declare const findConsistentOutlierChannelsSchema: z.ZodObject<{ query: z.ZodString; channelAge: z.ZodDefault>; consistencyLevel: z.ZodDefault>; outlierMagnitude: z.ZodDefault>; videoCategoryId: z.ZodOptional; regionCode: z.ZodOptional>; maxResults: z.ZodDefault; }, z.core.$strip>; export declare class FindConsistentOutlierChannelsTool extends BaseTool { name: string; description: string; schema: z.ZodObject<{ query: z.ZodString; channelAge: z.ZodDefault>; consistencyLevel: z.ZodDefault>; outlierMagnitude: z.ZodDefault>; videoCategoryId: z.ZodOptional; regionCode: z.ZodOptional>; maxResults: z.ZodDefault; }, z.core.$strip>; protected executeImpl(params: z.infer): Promise; }