import { CoreBaseCommand } from "./CoreBaseCommand.js"; /** Base command class for authenticated commands that includes the --token flag. */ export declare abstract class BaseCommand extends CoreBaseCommand { static baseFlags: { token: import("@oclif/core/interfaces").OptionFlag; }; init(): Promise; private getEffectiveTokenWithFlag; }