/** * Walk the alias chain to the original ts.Symbol. * * `import { foo } from './x'` produces an alias symbol whose * declarations are the import specifier itself; getAliasedSymbol * follows the chain to the actual declaration. */ import ts from 'typescript'; export declare function unaliasSymbol(symbol: ts.Symbol, checker: ts.TypeChecker): ts.Symbol; //# sourceMappingURL=unalias-symbol.d.ts.map