/** * CLI Commands barrel export + combined registration */ import type { Command } from 'commander'; import type { ServiceContext } from '../../types.js'; export declare function registerAllCommands(program: Command, ctx: ServiceContext): void; export { registerWikiCommands } from './wiki-commands.js'; export { registerWorkItemCommands } from './work-item-commands.js'; export { registerPullRequestCommands } from './pull-request-commands.js'; export { registerBuildCommands } from './build-commands.js'; export { registerVariableGroupCommands } from './variable-group-commands.js'; export { registerSyncCommands } from './sync-commands.js'; export { registerConfigurationCommands } from './configuration-commands.js'; export { registerChecklistCommands } from './checklist-commands.js'; export { registerTestCommands } from './test-commands.js'; //# sourceMappingURL=index.d.ts.map