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