import type { Exp } from "../../exp/index.js"; import * as Exps 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 ClazzExtends extends Stmt { name: string; parent: Exp; clazz: Exps.ClazzUnfolded; span?: Span | undefined; constructor(name: string, parent: Exp, clazz: Exps.ClazzUnfolded, span?: Span | undefined); execute(mod: Mod): Promise; undo(mod: Mod): void; } //# sourceMappingURL=ClazzExtends.d.ts.map