import type { RunAgentOptions } from '../agents/runAgent.js'; import type { DeriveTurnOptionsInput, DirectoryManifest } from './types.js'; /** * Turn a loaded project into the options `runAgent` takes. * * One direction, no second engine. Everything this produces is an ordinary * `RunAgentOptions` field, so a caller who needs something this does not cover * spreads `overrides` or stops using this function — there is no behaviour * reachable only through the convention. */ export declare function deriveTurnOptions(manifest: DirectoryManifest, input: DeriveTurnOptionsInput): RunAgentOptions; //# sourceMappingURL=derive.d.ts.map