import { z } from 'zod'; import type { RuleTemplate } from './types.js'; declare const ConfigSchema: z.ZodObject<{ jsx_a11y_rule_id: z.ZodString; options: z.ZodDefault>; }, "strip", z.ZodTypeAny, { options: Record; jsx_a11y_rule_id: string; }, { jsx_a11y_rule_id: string; options?: Record | undefined; }>; type Config = z.infer; export declare const a11yJsxTemplate: RuleTemplate; export {};