import type { LegalEntityType } from '../../core/models/api/legal-entity-type'; import type { LegalEntity } from '../../core/models/api/legal-entity'; import type { AccountHolderOption } from '../../types/accountHolder'; type AssociatedEntityDetails = { associatedLegalEntityId?: string; associatedLegalEntityType?: LegalEntityType; }; /** * Gets associated legal entity type and ID for the base tracking payload * Based on selected account holder type */ export declare const getAnalyticsAssociatedEntityDetails: (rootLegalEntity: LegalEntity, accountHolderType?: AccountHolderOption) => AssociatedEntityDetails | undefined; export {};