/**
 * `agentled fixture capture <executionId> --wf <workflowId>` — save all step
 * outputs from an execution as local JSON fixtures for zero-credit replay.
 * `agentled fixture list` — list all captured fixture sets.
 *
 * Auto-updates tests/<workflowId>.test.json so the assertions reference the
 * captured execution as their fixture source.
 */
import { Command } from 'commander';
export declare function registerFixtureCommands(program: Command): void;
