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