import { Command } from 'commander'; import type { ManagedChangeSet, ValidationReport } from '../../services/api-client'; export declare function renderChangeSetList(changeSets: ManagedChangeSet[], format?: 'json' | 'markdown'): string; export declare function renderChangeSetStatus(changeSet: ManagedChangeSet, historyRecords: Record[], format?: 'json' | 'markdown'): string; export declare function renderDryRunDeploymentPreview(changeSetId: string, report: ValidationReport): string; export declare function registerChangeSetCommands(program: Command): void;