import { Rule } from "eslint"; import { JSXElement, ImportDeclaration, ExportNamedDeclaration, ImportSpecifier, ExportSpecifier, ImportDefaultSpecifier, ImportNamespaceSpecifier } from "estree-jsx"; export declare function removeSpecifierFromDeclaration(fixer: Rule.RuleFixer, context: Rule.RuleContext, node: ImportDeclaration | ExportNamedDeclaration, specifierToRemove: ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ExportSpecifier): Rule.Fix[]; export declare const getRemoveElementFixes: (context: Rule.RuleContext, fixer: Rule.RuleFixer, elementsToRemove: JSXElement[]) => Rule.Fix[]; //# sourceMappingURL=fixers.d.ts.map