import type { Command } from 'commander'; import type { LoadedRouteCodexConfig } from '../../config/routecodex-config-loader.js'; import type { ManagedZombieProcess } from '../../utils/managed-server-pids.js'; type LoggerLike = { info: (msg: string) => void; warning: (msg: string) => void; success: (msg: string) => void; error: (msg: string) => void; }; export type StatusCommandContext = { logger: LoggerLike; log: (line: string) => void; loadConfig: () => Promise; fetch: typeof fetch; listManagedZombieChildren?: (port: number) => ManagedZombieProcess[]; }; export declare function createStatusCommand(program: Command, ctx: StatusCommandContext): void; export {};