import { type TSESLint } from '@typescript-eslint/utils'; type ComponentNameOption = Readonly<{ maxLength?: number; pattern?: RegExp; }>; type Options = readonly [ComponentNameOption] | readonly []; type MessageIds = 'componentNameTooLong' | 'componentNameDoesNotMatch'; export declare const componentNameRule: TSESLint.RuleModule; export {}; //# sourceMappingURL=component-name.d.mts.map