import Command from '../../command';
import Device from '../../../models/Device';
export default class HostDevicesCommand extends Command<Device[]> {
    execute(): Promise<Device[]>;
    _readDevices(): Promise<Device[]>;
    _parseDevices(value: string): Device[];
}
//# sourceMappingURL=HostDevicesCommand.d.ts.map