import { z } from "zod"; export declare const lspDiagnosticsArgsSchema: z.ZodObject<{ filePath: z.ZodString; severity: z.ZodOptional>; extension: z.ZodOptional; }, z.core.$strip>; export type LspDiagnosticsArgs = z.infer;