import { UserService } from '@rondo.dev/common'; import { TypeORMDatabase } from '@rondo.dev/db-typeorm'; import { Context, RPC } from './RPC'; export declare class SQLUserService implements RPC { protected readonly db: TypeORMDatabase; constructor(db: TypeORMDatabase); getProfile(context: Context): Promise<{ id: number; username: string; firstName: string | null; lastName: string | null; }>; findUserByEmail(context: Context, email: string): Promise<{ id: number; username: string; firstName: string | null; lastName: string | null; } | undefined>; protected _hash(password: string): Promise; } //# sourceMappingURL=SQLUserService.d.ts.map