/** * Get references event types and schemas */ import { z } from 'zod'; /** * Get references input schema */ export declare const GetReferencesInputSchema: z.ZodObject<{ filePath: z.ZodString; symbol: z.ZodString; codeSnippet: z.ZodOptional; includeDeclaration: z.ZodOptional; usageCodeLineRange: z.ZodDefault>; }, z.core.$strict>; /** * Get references output schema */ export declare const GetReferencesOutputSchema: z.ZodObject<{ locations: z.ZodArray; end: z.ZodObject<{ line: z.ZodNumber; character: z.ZodNumber; }, z.core.$strict>; }, z.core.$strict>; usageCode: z.ZodOptional; }, z.core.$strict>>; }, z.core.$strict>; /** * Get references payload (input parameters) */ export type GetReferencesPayload = z.infer; /** * Get references result (output data) */ export type GetReferencesResult = z.infer; //# sourceMappingURL=get-references.d.ts.map