import type ts from "typescript";
import type { VisitorContext } from "../types.ts";
/** Gets proper path and calls updaterFn to get the new node if it should be updated */
export declare function resolvePathAndUpdateNode(context: VisitorContext, node: ts.Node, moduleName: string, updaterFn: (newPath: ts.StringLiteral) => ts.Node | undefined): ts.Node | undefined;
