import { OAuthCommand } from '@salesforce/b2c-tooling-sdk/cli'; /** * JSON output structure for the token command */ interface TokenJsonOutput { accessToken: string; expires: string; scopes: string[]; } export default class AuthToken extends OAuthCommand { static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; } export {};