import { SfCommand } from '@salesforce/sf-plugins-core'; export declare enum SObjectType { ALL = 0, STANDARD = 1, CUSTOM = 2 } export type SObjectListResult = string[]; export declare class SObjectList extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly aliases: string[]; static readonly deprecateAliases = true; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag; 'api-version': import("@oclif/core/interfaces").OptionFlag; loglevel: import("@oclif/core/interfaces").OptionFlag; sobject: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }