import { ScopeTracker } from '../state/ScopeTracker'; import { VariableType } from '../state/ScopeTracker'; /** * Given state, namespace, and functionname, return: * - canonicalName * - identifier * - type */ export declare function getTrackedVariable(scopeTracker: ScopeTracker, namespaceName: string | null, functionName: string | null): { canonicalName: string | undefined; identifier: number | undefined; type: VariableType | undefined; }; //# sourceMappingURL=getTrackedVariable.d.ts.map