export interface PrepareEvalBatteryOptions { readonly skillDir: string; readonly evalsPath: string; readonly outputRoot: string; readonly allowFixtureNameGlobs?: readonly string[]; } export interface PreparedEvalActorContract { readonly caseFile: string; readonly fixturesDir: string; readonly promptField: string; readonly description: string; } export interface PreparedEvalBattery { readonly outputRoot: string; readonly actorRunsDir: string; readonly controllerDir: string; readonly skillName: string; readonly evalIds: readonly number[]; readonly actorContract: PreparedEvalActorContract; } export declare function prepareEvalBattery(options: PrepareEvalBatteryOptions): Promise; //# sourceMappingURL=setup.d.ts.map