import { z } from 'zod'; export declare const RenameSymbolInputSchema: z.ZodObject<{ filePath: z.ZodString; symbol: z.ZodString; codeSnippet: z.ZodOptional; newName: z.ZodString; }, z.core.$strict>; export declare const RenameSymbolOutputSchema: z.ZodObject<{ success: z.ZodBoolean; symbolName: z.ZodOptional; modifiedFiles: z.ZodArray>; totalChanges: z.ZodNumber; error: z.ZodOptional; }, z.core.$strict>; export type RenameSymbolPayload = z.infer; export type RenameSymbolResult = z.infer; //# sourceMappingURL=rename-symbol.d.ts.map