import { ScaffoldRuntime } from "./scaffold"; /** A composed on-disk runtime: the two ports `scaffold` needs, plus the output root. */ export interface RealRuntime extends ScaffoldRuntime { /** The output directory every write/read is contained under. */ rootDir: string; } /** Build an on-disk runtime rooted at `rootDir`. */ export declare function createRealRuntime(rootDir: string, flagReader?: (name: string) => boolean): RealRuntime; //# sourceMappingURL=realRuntime.d.ts.map