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