import { ArchbaseEntityTransformer, ArchbaseRemoteApiClient, ArchbaseRemoteApiService } from '@archbase/data'; import { UserDto } from './SecurityDomain'; export declare class ArchbaseUserService extends ArchbaseRemoteApiService implements ArchbaseEntityTransformer { constructor(client: ArchbaseRemoteApiClient); protected configureHeaders(): Record; transform(entity: UserDto): UserDto; protected getEndpoint(): string; getId(entity: UserDto): string; isNewRecord(entity: UserDto): boolean; getUserByEmail(email: string): Promise; }