import type { Exp } from "../exp/index.js"; import { Macro } from "../macro/index.js"; import type { Span } from "../span/index.js"; export type EquivalentEntry = { via?: Exp; to: Exp; span: Span; }; export declare class Equivalent extends Macro { type: Exp; from: Exp; rest: Array; span: Span; constructor(type: Exp, from: Exp, rest: Array, span: Span); expand(): Exp; } //# sourceMappingURL=Equivalent.d.ts.map