import type { Babel } from './Babel.type.js'; import type { NodePath } from '@babel/core'; import type { AssignmentExpression } from 'babel-types'; export default function MakeBabelTransformBind(): (babel: Babel) => { name: string; visitor: { AssignmentExpression(path: NodePath, state: any): void; }; }; //# sourceMappingURL=BabelTransformReactiveSvelteStyle.d.ts.map