/**
 * Responsibilities: Builds commander commands from the validated build model.
 * - Creates workflows and tasks with summaries, descriptions, and parameters
 * - Wires task actions to the Listr-backed executor via createTaskAction
 */
import type { Command } from 'commander';
import type { BuildModelValidation } from './build-model.js';
export declare const createCommands: (program: Command, buildModelValidation: BuildModelValidation) => void;
