import { RuleProcessorT } from '../../core/rules/processor-models'; import { z } from 'zod'; declare const configSchema: z.ZodObject<{ endpointDescriptor: z.ZodOptional, z.ZodString]>>; parameterDescriptor: z.ZodOptional, z.ZodLiteral<"header">, z.ZodLiteral<"path">, z.ZodLiteral<"cookie">]>; }, "strict", z.ZodTypeAny, { name: string; in: "path" | "query" | "header" | "cookie"; }, { name: string; in: "path" | "query" | "header" | "cookie"; }>>; }, "strict", z.ZodTypeAny, { endpointDescriptor?: string | { path: string; method: string; } | undefined; parameterDescriptor?: { name: string; in: "path" | "query" | "header" | "cookie"; } | undefined; }, { endpointDescriptor?: string | { path: string; method: string; } | undefined; parameterDescriptor?: { name: string; in: "path" | "query" | "header" | "cookie"; } | undefined; }>; declare const processor: RuleProcessorT; export default processor; export { configSchema };