import { RuleProcessorT } from '../../core/rules/processor-models'; import { z } from 'zod'; declare const configSchema: z.ZodObject<{ ignoreComponents: z.ZodOptional]>, "many">>; ignoreEndpoints: z.ZodOptional, z.ZodString]>, "many">>; ignoreEndpointParameters: z.ZodOptional, z.ZodLiteral<"header">, z.ZodLiteral<"path">, z.ZodLiteral<"cookie">]>; }, "strict", z.ZodTypeAny, { name: string; path: string; method: string; in: "path" | "query" | "header" | "cookie"; }, { name: string; path: string; method: string; in: "path" | "query" | "header" | "cookie"; }>, "many">>; showDeprecatedDescriptions: z.ZodOptional; }, "strict", z.ZodTypeAny, { ignoreComponents?: (string | { componentName: string; })[] | undefined; ignoreEndpoints?: (string | { path: string; method: string; })[] | undefined; ignoreEndpointParameters?: { name: string; path: string; method: string; in: "path" | "query" | "header" | "cookie"; }[] | undefined; showDeprecatedDescriptions?: boolean | undefined; }, { ignoreComponents?: (string | { componentName: string; })[] | undefined; ignoreEndpoints?: (string | { path: string; method: string; })[] | undefined; ignoreEndpointParameters?: { name: string; path: string; method: string; in: "path" | "query" | "header" | "cookie"; }[] | undefined; showDeprecatedDescriptions?: boolean | undefined; }>; declare const processor: RuleProcessorT; export default processor; export { configSchema };