import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; /** * Log in via browser (Authorization Code + PKCE) and persist the session for * stateful auth. PKCE sessions use the CLI's unified multi-session store; old * sfcc-ci-compatible renewal records are intentionally not reused. */ export default class AuthLogin extends BaseCommand { static args: { clientId: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static flags: { 'account-manager-host': import("@oclif/core/interfaces").OptionFlag; 'auth-scope': import("@oclif/core/interfaces").OptionFlag; 'auth-methods': import("@oclif/core/interfaces").OptionFlag; }; static hiddenAliases: string[]; protected loadConfiguration(): Promise; run(): Promise; private selectMethod; }