import { z } from 'zod'; import type { RuleTemplate } from './types.js'; declare const ConfigSchema: z.ZodObject<{ call_pattern: z.ZodString; forbidden_alternative: z.ZodString; exceptions: z.ZodDefault>; }, "strip", z.ZodTypeAny, { call_pattern: string; forbidden_alternative: string; exceptions: string[]; }, { call_pattern: string; forbidden_alternative: string; exceptions?: string[] | undefined; }>; type Config = z.infer; export declare const jsCallTokenComplianceTemplate: RuleTemplate; export {};