import { BaseCommand } from './baseCommand'; import { Account } from '../rest/accounts'; import type { CommandPreview } from '../helpers/command-preview'; export declare abstract class AuthCommand extends BaseCommand { #private; static hidden: boolean; get account(): Account; protected init(): Promise; protected confirmOrAbort(preview: CommandPreview, options: { force: boolean; dryRun?: boolean; interactiveConfirm?: () => Promise; }): Promise; }