import { SfCommand } from '@salesforce/sf-plugins-core'; export type OrgAuthShowUserPasswordResult = { password: string; }; export default class OrgAuthShowUserPassword extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag; 'no-prompt': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }