import Command from '../command'; import { WaitForState, WaitForType } from '../../util'; import { Connection } from '../../connection'; export default class WaitFor extends Command { protected autoEnd: boolean; private transport; private state; constructor(connection: Connection, transport: WaitForType, state: WaitForState); execute(): Promise; }