import type { CommandModule } from 'yargs'; interface StopArgs { port: number; host: string; env?: string; timeout: number; json: boolean; } export declare const stopCommand: CommandModule; export {};