import { SfCommand } from '@salesforce/sf-plugins-core'; import { OrgAuthorization } from '@salesforce/core'; type AuthListResult = Omit & { alias: string; }; export type AuthListResults = AuthListResult[]; export default class ListAuth extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly deprecateAliases = true; static readonly aliases: string[]; static readonly flags: { loglevel: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } export {};