import { Tree } from '@nx/devkit'; /** * Auto-discovers bot-app generators flagged with `x-bot-app-migration: true` in * generators.json and queues them in `.botonic/pending-bot-migrations.json` for * bots whose `@botonic/core` version predates the generator's `x-introduced-in`. * * This migration is intentionally generic: it never needs to change when a new * bot-app generator is added — just flag the new entry in generators.json. */ export default function queueBotMigrations(tree: Tree): Promise;