import type { ChangePhase, NextAction, TasksSummary, VerifySummary } from './types.js'; interface NextActionInput { phase: ChangePhase; tasks: TasksSummary; verify: VerifySummary; } /** * Recommend a next slash-command for an active change. Combines the phase * with task / verify state so the reason text matches what the user will * actually see when they run the command. * * Returns `null` for archived changes — the dashboard surfaces an archive * summary in that case instead of a next-action card. */ export declare function recommendNextAction(input: NextActionInput): NextAction; export {}; //# sourceMappingURL=next-action.d.ts.map