import { BaseCommand } from "./BaseCommand.js"; import { CommandArgs, CommandFlags } from "./CommandFlags.js"; import { CommandType } from "../context/FlagSetBuilder.js"; export declare abstract class ExtendedBaseCommand extends BaseCommand { static baseFlags: { token: import("@oclif/core/interfaces").OptionFlag; }; protected flags: CommandFlags; protected args: CommandArgs; init(): Promise; withAppInstallationId(command: CommandType<"installation"> | "flag" | "arg"): Promise; withProjectId(command: CommandType<"project"> | "flag" | "arg"): Promise; withServerId(command: CommandType<"server"> | "flag" | "arg"): Promise; withStackId(command: CommandType<"stack"> | "flag" | "arg"): Promise; }