import type { IBuildTsconfigOptions } from "../structures/IBuildTsconfigOptions"; /** * Serialize a tsconfig JSON document the wasm-side compiler can consume. * * `buildTsconfigJSON` is deliberately conservative — it returns a string the * caller writes to MemFS as-is, so there's no schema validation here. Bad * compiler options surface as wasm-side errors on the next build call. */ export declare function buildTsconfigJSON(options: IBuildTsconfigOptions): string;