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