import type { Mod } from "../../mod/index.js"; import type { Span } from "../../span/index.js"; import { Stmt } from "../../stmt/index.js"; import type { ImportBinding } from "../import/index.js"; export declare class Import extends Stmt { bindings: Array; path: string; span?: Span | undefined; constructor(bindings: Array, path: string, span?: Span | undefined); execute(mod: Mod): Promise; undo(mod: Mod): void; } //# sourceMappingURL=Import.d.ts.map