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