import * as t from '@babel/types'; import { NodePath } from '@babel/traverse'; /** * Inject runtime translate import with only the specifiers needed. * `import { GtInternalRuntimeTranslateString, GtInternalRuntimeTranslateJsx } from 'gt-react'` */ export declare function injectRuntimeTranslateImport(path: NodePath, { needsString, needsJsx, legacyGtReactImportSource, }: { needsString: boolean; needsJsx: boolean; legacyGtReactImportSource: boolean; }): NodePath | null; //# sourceMappingURL=injectRuntimeTranslateImport.d.ts.map