/**
 * Run Command Handler
 *
 * Implements `aiwg run <script>` — executes user-defined scripts from
 * `.aiwg/aiwg.config` `scripts` section.
 *
 * Modelled on `npm run`. With no arguments, lists available scripts.
 *
 * Environment variables available in scripts:
 *   $AIWG_PROJECT   — absolute path to the project root
 *   $AIWG_PROVIDERS — comma-separated list of configured providers
 *
 * @implements #621
 */
import type { CommandHandler } from './types.js';
export declare const runHandler: CommandHandler;
//# sourceMappingURL=run.d.ts.map