/**
 * GAIA Agent — Planning Interval Smoke Tests
 *
 * Verifies that the planning-checkpoint injection logic fires at the correct
 * turns and stays silent when conditions are not met.  All tests are fully
 * mocked — no live Anthropic API calls, $0 cost.
 *
 * Test cases:
 *   1. 12-turn loop with interval=4 → replans at turns 4, 8, 12  (3 replans)
 *   2.  3-turn loop with interval=4 → NO replan (interval never hit)
 *   3. end_turn at turn 5          → NO replan injected (terminal state)
 *   4. all-tool_use 8-turn loop    → exactly floor(8/4) = 2 replans
 *   5. planningInterval=0          → disabled entirely, 0 replans
 *
 * Refs: ADR-133, ADR-135, iter 34, #2156
 */
export {};
//# sourceMappingURL=gaia-agent-planning.smoke.d.ts.map