import { Command } from "./Command"; import { Context } from "../Context"; export declare class SpeedCommand extends Command { speed: number; constructor(speed: number); execute(context: Context, amount: number): number; }