import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; import { z } from 'zod'; declare const inputSchema: z.ZodObject<{ component: z.ZodString; }, z.core.$strip>; export declare const getComponentExamples: { readonly name: "get_component_examples"; readonly description: "读取指定组件的 examples.md(使用案例与示例代码)。"; readonly inputSchema: z.ZodObject<{ component: z.ZodString; }, z.core.$strip>; readonly executor: (input: z.infer) => Promise; }; export {};