import { NodePath } from '@babel/traverse'; import { GTLibrary } from '../../../types/libraries.js'; /** * Constructs tracking for gt related variables of interest * inlineTranslationPaths: these are string-related translation functions * translationComponentPaths: these are just components * importAliases: any other GT related imports */ export declare function getPathsAndAliases(ast: any, pkgs: GTLibrary[]): { importAliases: Record; inlineTranslationPaths: Array<{ localName: string; path: NodePath; originalName: string; }>; translationComponentPaths: Array<{ localName: string; path: NodePath; originalName: string; }>; };