/** Configuration options for the `no-use-event-handler-attr` rule. */ type Options = { /** Attribute name pattern(s) to exclude from the check. */ ignore?: string | string[]; }; /** * Rule that disallows inline event handler attributes (e.g., `onclick`, * `onchange`). * * Reports any attribute on an HTML element whose name starts with `on`, * indicating an inline event handler. An `ignore` option allows specific * attribute names or patterns to be excluded from the check. */ declare const _default: Readonly>; export default _default;