import { Entity, Relationship } from '@jupiterone/integration-sdk-core'; import { WhitehatEventSubscriptions } from '../../types'; export declare function createServiceEntity([data,]: WhitehatEventSubscriptions[]): Entity; export declare function createAccountServiceRelationship({ accountEntity, serviceEntity, }: { accountEntity: Entity; serviceEntity: Entity; }): Relationship;