import type { ParadoxConfig } from '../config/types.js'; import type { RenderResult } from '../render/types.js'; /*** * Writes generated documentation artifacts to the configured output paths. */ export declare function write(result: RenderResult, config: ParadoxConfig, runtime: { packageRoot: string; outputRoot: string; }): Promise;