import * as Exps from "../exp"; import { Mod } from "../mod"; import { Span } from "../span"; import { Stmt } from "../stmt"; export declare class Success extends Stmt { names: Array; goals: Array; span?: Span | undefined; constructor(names: Array, goals: Array, span?: Span | undefined); execute(mod: Mod): Promise; }