import { Connection } from '../../connection'; import Command from '../command'; export default abstract class IpConnect extends Command { protected abstract Validator: RegExp; protected autoEnd: boolean; private command; private host; private port; constructor(connection: Connection, command: string, host: string, port: number); execute(): Promise; }