import AbstractCommand from '../modules/AbstractCommand.ts'; declare class CreateUser extends AbstractCommand { static get description(): string; /** * You able to add command arguments for parsing there. */ static get commandArguments(): { readonly id: { readonly type: "string"; readonly description: "User id to find user"; }; readonly email: { readonly type: "string"; readonly description: "User id to find/create user"; }; readonly password: { readonly type: "string"; readonly description: "New password for user"; }; readonly roles: { readonly type: "string"; readonly description: "User roles comma separated string (--roles=user,admin,someOtherRoles)"; }; readonly update: { readonly type: "boolean"; readonly default: false; readonly description: "Update user if it exists"; }; }; run(): Promise; } export default CreateUser;