import { Entity, Relationship } from '@jupiterone/integration-sdk-core'; import { WhitehatAsset } from '../../types'; export declare function createAssetEntity(data: WhitehatAsset): Entity; export declare function createAccountAssetRelationship({ accountEntity, assetEntity, }: { accountEntity: Entity; assetEntity: Entity; }): Relationship;