import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; /** * Clear all stored OAuth sessions, including the legacy sfcc-ci-compatible * renewal record. After logout, commands resolve a configured stateless flow * or start the default PKCE browser flow. */ export default class AuthLogout extends BaseCommand { static description: string; static examples: string[]; static hiddenAliases: string[]; run(): Promise; }