/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { Command, flags } from '@microsoft/bf-cli-command'; export default class LuisGenerateCs extends Command { static description: string; static flags: flags.Input; renameProp(oldProp: string, newProp: string, { [oldProp]: old, ...others }: { [x: string]: any; }): any; reorderEntities(app: any, name: string): void; run(): Promise; }