declare namespace _exports { export { Option1, Option2 }; } declare const _exports: RuleModule<[Option1, Option2]>; export = _exports; type Option1 = "camelCase" | "snake_case" | "PascalCase" | "kebab-case" | "regex"; type Option2 = { pattern: string; flags?: string | undefined; }; import type { RuleModule } from "../types"; //# sourceMappingURL=id-naming-convention.d.ts.map