import { z } from 'zod'; /** * Schemas for hotspot tools */ export declare const hotspotsToolSchema: { project_key: z.ZodOptional; branch: z.ZodOptional>; pull_request: z.ZodEffects>>, string | null | undefined, string | number | null | undefined>; status: z.ZodOptional>>; resolution: z.ZodOptional>>; files: z.ZodOptional>>; assigned_to_me: z.ZodOptional]>>>; since_leak_period: z.ZodOptional]>>>; in_new_code_period: z.ZodOptional]>>>; page: z.ZodEffects, number | null | undefined, string | undefined>; page_size: z.ZodEffects, number | null | undefined, string | undefined>; }; export declare const hotspotToolSchema: { hotspot_key: z.ZodString; }; export declare const updateHotspotStatusToolSchema: { hotspot_key: z.ZodString; status: z.ZodEnum<["TO_REVIEW", "REVIEWED"]>; resolution: z.ZodOptional>>; comment: z.ZodOptional>; };