import type { NodePath } from '@babel/traverse'; import * as t from '@babel/types'; /** * Checks whether a tagged template expression should be treated as the GT * string translation macro. * * The macro is valid when it is an unbound bare identifier, or when it is * imported from gt-react. This covers global `t`, but not explicit * member access such as `globalThis.t` or `window.t`. Other bindings are left * alone so local/i18next t tags do not get transformed or extracted. */ export declare function isStringTranslationTaggedTemplate(path: NodePath, symbol: string): boolean; //# sourceMappingURL=isStringTranslationTaggedTemplate.d.ts.map