import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; /** * JSON output structure for the auth client token command. */ interface AuthClientTokenOutput { accessToken: string; clientId: string; expires: string; scopes: string[]; user: null | string; } /** * Return the stored authentication token. With multiple stored sessions * (e.g. one from `auth client`, one from `auth login`), pass `--client-id` * to disambiguate. */ export default class AuthClientToken extends BaseCommand { static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { 'client-id': import("@oclif/core/interfaces").OptionFlag; }; static hiddenAliases: string[]; run(): Promise; } export {};