#!/usr/bin/env node import { P as Prettify } from '../utils-0kAkCPl6.js'; import { Command } from '@commander-js/extra-typings'; declare const ponder: Command<[], { root?: string | undefined; config: string; debug?: true | undefined; trace?: true | undefined; logLevel?: string | undefined; logFormat: string; }>; type GlobalOptions = { command: "dev" | "start" | "serve" | "codegen"; } & ReturnType; declare const devCommand: Command<[], { port: number; hostname?: string | undefined; }>; declare const startCommand: Command<[], { port: number; hostname?: string | undefined; }>; declare const serveCommand: Command<[], { port: number; hostname?: string | undefined; }>; declare const codegenCommand: Command<[], {}>; type CliOptions = Prettify & ReturnType & ReturnType & ReturnType>>; export type { CliOptions };