import { VisitNode } from '@babel/traverse'; import * as t from '@babel/types'; import { TransformState } from '../../state/types'; /** * Process tagged template expressions during the collection pass. * Extracts the message for runtime-only entries (t`Hello ${name}`). * * Only extracts when: * - t is unbound (global macro) * - t is imported from a gt-react entrypoint * * Does NOT transform the AST — read-only extraction. * If the message contains derive() (returns TemplateLiteral), it's skipped. */ export declare function processTaggedTemplateExpression(state: TransformState): VisitNode; //# sourceMappingURL=processTaggedTemplateExpression.d.ts.map