import { Rule } from "eslint"; import { JSXElement } from "estree-jsx"; /** Transforms JSXElement to a self-closing tag. * Works only on elements without children by default, but you can overwrite this behaviour with the removeChildren parameter. */ export declare function makeJSXElementSelfClosing(node: JSXElement, context: Rule.RuleContext, fixer: Rule.RuleFixer, removeChildren?: boolean): Rule.Fix[]; //# sourceMappingURL=makeJSXElementSelfClosing.d.ts.map