import { TraverseOptions } from '@babel/traverse'; import { TransformState } from '../state/types'; /** * The purpose of this pass is to insert the translation component (GtInternalTranslateJsx) * and variable component (GtInternalVar) automatically into the Jsx tree. * This is specifically for browser builds only. * *
Hello
->
Hello
*/ export declare function jsxInsertionPass(state: TransformState): TraverseOptions; //# sourceMappingURL=jsxInsertionPass.d.ts.map