import { flags, SfdxCommand } from '@salesforce/command'; import { AnyJson } from '@salesforce/ts-types'; export default class ConnectedAppCreate extends SfdxCommand { static description: string; static examples: any[]; static readonly flagsConfig: { path: flags.Discriminated>; }; protected static requiresProject: boolean; run(): Promise; }