import type { Exp } from "../../exp/index.js"; import type { Mod } from "../../mod/index.js"; import type { Span } from "../../span/index.js"; import { Stmt } from "../../stmt/index.js"; export declare class Let extends Stmt { name: string; exp: Exp; span?: Span | undefined; constructor(name: string, exp: Exp, span?: Span | undefined); execute(mod: Mod): Promise; undo(mod: Mod): void; } //# sourceMappingURL=Let.d.ts.map