import { z } from 'zod'; export declare const SmartAnalysisSchema: z.ZodObject<{ bugId: z.ZodUnion<[z.ZodNumber, z.ZodString]>; depth: z.ZodDefault>>; }, "strip", z.ZodTypeAny, { bugId: string | number; depth: "quick" | "standard" | "comprehensive"; }, { bugId: string | number; depth?: "quick" | "standard" | "comprehensive" | undefined; }>; export declare function smartAnalysis(args: z.infer): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=smartAnalysis.d.ts.map