import { RuleProcessorT } from '../../core/rules/processor-models'; import { z } from 'zod'; declare const configSchema: z.ZodObject<{ endpointDescriptor: z.ZodOptional>; endpointDescriptorCorrection: z.ZodOptional; patchMethod: z.ZodOptional, z.ZodLiteral<"merge">]>>; schemaDiff: z.ZodOptional; }, "strict", z.ZodTypeAny, { endpointDescriptor?: { path: string; method: string; } | undefined; endpointDescriptorCorrection?: string | undefined; patchMethod?: "deepmerge" | "merge" | undefined; schemaDiff?: any; }, { endpointDescriptor?: { path: string; method: string; } | undefined; endpointDescriptorCorrection?: string | undefined; patchMethod?: "deepmerge" | "merge" | undefined; schemaDiff?: any; }>; declare const processor: RuleProcessorT; export default processor; export { configSchema };