import type { SynthesisPlan, SynthesisPlanProgress, SynthesisPlanRequest } from './types'; export declare const DEFAULT_MAX_E_ABOVE_HULL = 0.03; export declare const COMPETITOR_E_ABOVE_HULL = 0.02; export declare function plan_synthesis_with_progress(request: SynthesisPlanRequest, options?: { on_progress?: (progress: SynthesisPlanProgress) => void; }): SynthesisPlan; export declare const plan_synthesis: (request: SynthesisPlanRequest) => SynthesisPlan;