import type { Mod } from "../../mod/index.js"; import type { Span } from "../../span/index.js"; import { Stmt } from "../../stmt/index.js"; import { type Equation, SolveBinding } from "../solve/index.js"; export declare class Solve extends Stmt { bindings: Array; equations: Array; span?: Span | undefined; constructor(bindings: Array, equations: Array, span?: Span | undefined); execute(mod: Mod): Promise; } //# sourceMappingURL=Solve.d.ts.map