import * as ESTree from "estree"; import { MutatorPlugin } from "../types"; export declare function getMutatorsForNode(node: ESTree.Node): MutatorPlugin[]; export declare function getMutatorByName(name: string): MutatorPlugin | undefined;