import type { Context } from '../context.js'; import type { Phase, Plan } from '../types.js'; export declare const depsPhase: Phase; export declare function validateDependencyPlan(plan: Plan, ctx: Context): { valid: true; } | { valid: false; reason: string; }; export declare function validateDependencyPostconditions(ctx: Context): { valid: true; } | { valid: false; reason: string; }; //# sourceMappingURL=deps.d.ts.map