import { types as t } from "@marko/compiler"; declare module "@marko/compiler/dist/types" { interface NodeExtra { /** `$signal` abort id for this expression root, allocated in analyze * (see below) so every translate reads the same id. */ abortId?: number; } } declare const _default: { migrate(this: unknown, identifier: t.NodePath): void; analyze(this: unknown, identifier: t.NodePath): void; translate(this: unknown, identifier: t.NodePath): void; }; export default _default;