import { ICommand, CommandContext, CommandOptionType } from '../../types/index'; export interface StopCommandOptions { force?: boolean; timeout?: number; verbose?: boolean; } export declare class StopCommand implements ICommand { name: string; description: string; usage: string; options: ({ name: string; type: CommandOptionType; description: string; default: boolean; alias: string; } | { name: string; type: CommandOptionType; description: string; default: number; alias?: undefined; })[]; execute(context: CommandContext): Promise; private stopSystem; private forceStop; private parseOptions; private delay; validate(context: CommandContext): Promise; } export declare const stopCommand: StopCommand; export default StopCommand;