import { Command, Commander, CommandExecutor } from "./core"; import { Graph } from "../core"; export default class CoordinateExecutor extends CommandExecutor { constructor(command: Command); exec(commander: Commander): Graph; help(): string; }