/** * Phase 1 / phase 2 scalar parsing and validation from raw preset YAML. */ import type { RawPhase1, RawPhase2 } from "./raw-types.js"; export declare function readPhase1(presetName: string, phase1: RawPhase1 | undefined, presetMaxLossPct: number | undefined): { maxLossPct: number; retraceThreshold: number; phase1Breaches: number; phase1Enabled: boolean; }; export declare function readPhase2Scalars(presetName: string, phase2: RawPhase2 | undefined, requireTiersArray: boolean): { phase2Enabled: boolean; }; //# sourceMappingURL=parse-phase.d.ts.map