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 Compute extends Stmt { exp: Exp; span?: Span | undefined; constructor(exp: Exp, span?: Span | undefined); execute(mod: Mod): Promise; } //# sourceMappingURL=Compute.d.ts.map