import type { Command } from 'commander'; import type { ExtensionRegistry } from '../types/index.js'; /** * Apply all `registerCli` factories collected on the registry to a Commander program. */ export declare function registerExtensionCliProgram(program: Command, registry: ExtensionRegistry): void;