import * as t from '@babel/types'; import { NodePath } from '@babel/traverse'; /** * Converts template literal quasis and expressions into an ICU-style message * string with numeric variable placeholders ({0}, {1}, etc.). * * Recursively simplifies nested static expressions (string literals, * nested templates) and preserves derive() calls as template expressions. */ export declare function transformTemplateLiteral(path: NodePath): { content: { message: t.StringLiteral | t.TemplateLiteral; variables: t.ObjectExpression | null; }[]; errors: string[]; }; //# sourceMappingURL=transformTemplateLiteral.d.ts.map