/** * manifest harness command * * Runs a JSON harness script against a compiled .manifest IR using RuntimeEngine. */ type OutputFormat = 'text' | 'json'; interface HarnessCommandOptions { script: string; format?: OutputFormat; } export declare function harnessCommand(manifest: string, options: HarnessCommandOptions): Promise; export {}; //# sourceMappingURL=harness.d.ts.map