import { TransformState } from '../../state/types'; import { VisitNode } from '@babel/traverse'; import * as t from '@babel/types'; /** * Process variable assignments. * - Track callback variables (via translation function invocations: useGT, useTranslations, useMessages, etc.) * - Track overriding variables * * GT callbacks: * - const gt = useGT() * * Overriding variables: * - const gt = msg("hello"); * - const gt = "Hello" */ export declare function processVariableDeclarator(state: TransformState): VisitNode; //# sourceMappingURL=processVariableDeclarator.d.ts.map