/** * Tool: get_guidance * Interactive help system with embedded knowledge base */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetGuidanceInputSchema: z.ZodObject<{ question: z.ZodString; topic: z.ZodOptional>; }, "strip", z.ZodTypeAny, { question: string; topic?: "instructions" | "projects" | "connections" | "investigations" | "onboarding" | "troubleshooting" | undefined; }, { question: string; topic?: "instructions" | "projects" | "connections" | "investigations" | "onboarding" | "troubleshooting" | undefined; }>; export type GetGuidanceInput = z.infer; /** * Get interactive guidance and help */ export declare function getGuidance(services: ToolServices, args: unknown): Promise; export {};