/** * Dynamic Schema Examples Generator * * Generates realistic examples from actual available tools instead of hardcoded dummy examples */ export declare class SchemaExamplesGenerator { private tools; constructor(availableTools: Array<{ name: string; description: string; }>); /** * Get realistic tool execution examples */ getToolExecutionExamples(): string[]; /** * Get realistic discovery query examples */ getDiscoveryExamples(): string[]; /** * Generate complete tool execution schema with dynamic examples */ getToolExecutionSchema(): { type: string; description: string; }; /** * Generate discovery schema with realistic examples */ getDiscoverySchema(): { type: string; description: string; }; /** * Get tool categories for better organization */ getToolCategories(): { [category: string]: string[]; }; } /** * Fallback examples when no tools are available yet (startup scenario) */ export declare const FALLBACK_EXAMPLES: { toolExecution: string[]; discovery: string[]; }; //# sourceMappingURL=schema-examples.d.ts.map