/** * CLI handler for the `migrate` command. * * Subcommands: * - `list` — List available migration units * - `run` — Detect (and optionally apply) migrations * * @module migrate */ import type { ParsedArgs } from '../parse-args.js'; export declare const MIGRATE_HELP: string; /** * Route the `migrate` command to the appropriate subcommand. */ export declare function handleMigrate(args: ParsedArgs): Promise;