import type { Exp } 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 Include extends Stmt { exps: Array; span?: Span | undefined; constructor(exps: Array, span?: Span | undefined); execute(mod: Mod): Promise; } //# sourceMappingURL=Include.d.ts.map