import { z } from "zod"; import { BaseTool } from "../base.js"; import type { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; export declare const getChannelTopVideosSchema: z.ZodObject<{ channelId: z.ZodString; maxResults: z.ZodDefault>>; includeTags: z.ZodDefault>; descriptionDetail: z.ZodDefault>>; }, z.core.$strip>; export declare class GetChannelTopVideosTool extends BaseTool { name: string; description: string; schema: z.ZodObject<{ channelId: z.ZodString; maxResults: z.ZodDefault>>; includeTags: z.ZodDefault>; descriptionDetail: z.ZodDefault>>; }, z.core.$strip>; protected executeImpl(params: z.infer): Promise; }