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