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