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