import { Stmt, StmtMeta } from "../stmt"; import { Module } from "../module"; import * as Exps from "../exps"; export declare class Class extends Stmt { meta: StmtMeta; name: string; cls: Exps.Cls; constructor(name: string, cls: Exps.Cls, meta: StmtMeta); execute(mod: Module): Promise; repr(): string; }