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