import ts from "typescript";
import { AmbientModuleCache } from "../AmbientModuleCache.js";
export interface GlobalFixInfo {
    moduleName: string;
    propertyAccessStack: string[];
    relevantNode: ts.Node;
}
export default function getGlobalFixInfo(node: ts.CallExpression | ts.AccessExpression, ambientModuleCache: AmbientModuleCache): GlobalFixInfo | undefined;
