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