import { Command } from "commander"; import { buildCommand } from "./build"; import { devCommand } from "./dev"; import { startCommand } from "./start"; import { generateCommand } from "./generate"; declare const program: Command; export { program, buildCommand, devCommand, startCommand, generateCommand };