import type { Command as Program } from 'commander';
import type { $side_effect } from '../../utils/organization/$side_effect';
/**
 * Initializes `coder` command with subcommands for Promptbook CLI utilities
 *
 * The coder command provides utilities for automated coding:
 * - init: Initialize coder configuration in current project
 * - generate-boilerplates: Generate prompt boilerplate files
 * - find-refactor-candidates: Find files that need refactoring
 * - run: Run coding prompts with AI agents
 * - verify: Verify completed prompts
 * - find-fresh-emoji-tags: Find unused emoji tags
 *
 * Note: `$` is used to indicate that this function is not a pure function - it registers a command in the CLI
 *
 * @private internal function of `promptbookCli`
 */
export declare function $initializeCoderCommand(program: Program): $side_effect;
