import { ControlBaseCommand } from "../../control-base-command.js"; export default class AppsCurrent extends ControlBaseCommand { static description: string; static examples: string[]; static flags: { "oauth-host": import("@oclif/core/interfaces").OptionFlag; "control-host": import("@oclif/core/interfaces").OptionFlag; "dashboard-host": import("@oclif/core/interfaces").OptionFlag; verbose: import("@oclif/core/interfaces").BooleanFlag; json: import("@oclif/core/interfaces").BooleanFlag; "pretty-json": import("@oclif/core/interfaces").BooleanFlag; "web-cli-help": import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; /** * Handle the command in web CLI mode by extracting app info from environment variables * and using the Control API to get additional details */ private handleWebCliMode; }