import { Org } from '@salesforce/core'; import { SfCommand } from '@salesforce/sf-plugins-core'; import { Interfaces } from '@oclif/core'; export declare class CreateUserCommand extends SfCommand { static strict: boolean; static readonly deprecateAliases = true; static readonly aliases: string[]; static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { 'set-alias': Interfaces.OptionFlag; 'definition-file': Interfaces.OptionFlag; 'set-unique-username': Interfaces.BooleanFlag; 'target-org': Interfaces.OptionFlag; 'api-version': Interfaces.OptionFlag; loglevel: Interfaces.OptionFlag; }; private successes; private failures; private flags; private varargs; run(): Promise; private aggregateFields; private print; private setExitCode; } export default CreateUserCommand; export type CreateUserOutput = { orgId: string; permissionSetAssignments: string[]; fields: Record; };