import type { CLICommandDefinition, PluginContext } from '@claude-flow/shared/src/plugin-interface.js'; import type { FederationCoordinator } from './application/federation-coordinator.js'; type CoordinatorGetter = () => FederationCoordinator | null; type ContextGetter = () => PluginContext | null; export declare function createCliCommands(getCoordinator: CoordinatorGetter, getContext: ContextGetter): CLICommandDefinition[]; export {}; //# sourceMappingURL=cli-commands.d.ts.map