/** * Creates a temp directory with an eval.config.ts exporting a minimal config. * The config uses inline cases and a dummy target — suitable for tools that * only need to load/inspect config (not execute targets). * * Returns the temp directory path. Caller is responsible for cleanup. */ export declare function createTempConfig(options?: { readonly suites?: readonly { readonly name: string; readonly description?: string; readonly cases?: readonly { readonly id: string; readonly input: Record; }[]; readonly tags?: readonly string[]; readonly gates?: { readonly passRate?: number; }; }[]; readonly fixtureDir?: string; }): Promise; //# sourceMappingURL=test-helpers.d.ts.map