import type { Mod } from "../lang/mod/index.js"; import { Script } from "../script/index.js"; export declare class MarkdownScript extends Script { mod: Mod; text: string; constructor(mod: Mod, text: string); run(): Promise; buildText(block: Block): string | undefined; runBlock(block: Block): Promise; } type Block = { index: number; info: string; code: string; }; export {}; //# sourceMappingURL=MarkdownScript.d.ts.map