import { AuthenticatedCommand } from "../../AuthenticatedCommand"; export default class Create extends AuthenticatedCommand { static readonly description = "add a new Application to the active Workspace"; static readonly examples: string[]; static readonly flags: { "from-file": import("@oclif/core/lib/interfaces").OptionFlag; }; run(): Promise; }