import { type TSESLint } from '@typescript-eslint/utils'; type Options = readonly [ Readonly<{ ignoreName?: string | readonly string[]; }>? ]; type MessageIds = 'missingDisplayName' | 'mismatchedDisplayName'; /** * Rule to require displayName property for React components * This helps with debugging and component identification in React DevTools */ export declare const displayNameRule: TSESLint.RuleModule; export {}; //# sourceMappingURL=display-name.d.mts.map