/** * 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 { registerMetadataCommands } from './metadata-commands.js'; export { registerPluginCommands } from './plugin-commands.js'; export { registerFlowCommands } from './flow-commands.js'; export { registerAppCommands } from './app-commands.js'; export { registerFormCommands } from './form-commands.js'; export { registerSolutionCommands } from './solution-commands.js'; export { registerIntegrationCommands } from './integration-commands.js'; export { registerSecurityCommands } from './security-commands.js'; export { registerFieldSecurityCommands } from './field-security-commands.js'; //# sourceMappingURL=index.d.ts.map