/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { Command, flags } from '@microsoft/bf-cli-command'; export default class LuisTrainRun extends Command { static description: string; static examples: string[]; static flags: flags.Input; run(): Promise; timeout(ms: number): Promise; checkTrainingStatus(params: any, versionId: string, jsonOutput: boolean): Promise; }