import type { Command } from 'commander'; /** * Registers the `copilot` CLI plugin with the Fusion Framework CLI. * * Attaches the top-level `copilot` command group, providing Copilot SDK * powered evaluation tools with agent-browser. * * Usage: * ffc copilot app eval ./cookbooks/app-react * ffc copilot app eval . --eval smoke --model claude-sonnet-4 * * @param program - The root Commander program instance */ export declare function registerCopilotPlugin(program: Command): void; export default registerCopilotPlugin;