import { Stmt, StmtMeta } from "../stmt"; import { Module } from "../module"; import { Exp } from "../exp"; export declare class Def extends Stmt { meta: StmtMeta; name: string; exp: Exp; constructor(name: string, exp: Exp, meta: StmtMeta); execute(mod: Module): Promise; repr(): string; }