import { Connection } from 'typeorm'; import { OrgUser } from './tenant.entities'; import { AbstractAuthService, AuthUserChannel, CreatedUser } from '../core/auth'; export declare class TenantAuthService extends AbstractAuthService { private readonly connection; constructor(connection: Connection); createUser(username: string, email: string, password: string, channel?: AuthUserChannel, roleNames?: string[]): Promise>; }