/**
 * `agentled workflows scaffold` — emit a working pipeline JSON skeleton the
 * user can adapt. Saves 200+ lines of guess-and-validate authoring.
 *
 * Each scaffold is a real, preflight-passing pipeline JSON that covers one of
 * the core patterns (lead-scoring-kg, list-match-email, extract-threshold-
 * alert, email-polling-dedup, minimal). They reference the matching pattern
 * file in `agentled examples <pattern>` for the full explanation. See
 * scaffolds/README.md for the contract; drop JSON files in
 * ~/.agentled/scaffolds/ or set AGENTLED_SCAFFOLDS_DIR for local/team
 * scaffolds that shadow the bundled set.
 */
import { Command } from 'commander';
export declare function registerScaffoldCommand(workflows: Command): void;
