type Options = [ { /** * Enforce that events start with a given prefix */ eventNamespaces?: readonly string[]; /** * Enforce or forbid events to include the component name in the event name */ includeComponentNameInEventName?: boolean; } ]; type Messages = "componentNameInEventError" | "eventNamespaceError" | "missingPrivateJsDocTag" | "noComponentNameInEventError"; declare const _default: import('@typescript-eslint/utils/ts-eslint').RuleModule; export default _default;