import { AuthCommand } from '../authCommand.js'; export default class AccountPlan extends AuthCommand { static coreCommand: boolean; static hidden: boolean; static readOnly: boolean; static idempotent: boolean; static description: string; static args: { key: import("@oclif/core/interfaces").Arg>; }; static flags: { type: import("@oclif/core/interfaces").OptionFlag; search: import("@oclif/core/interfaces").OptionFlag; disabled: import("@oclif/core/interfaces").BooleanFlag; output: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }