import type { ExistingLegalEntity, LegalEntity } from '../core/models/api/legal-entity';
import type { Language } from '../language/Language';
export declare const getLegalEntityNameBasedOnType: (legalEntityResponse: LegalEntity) => string;
/** *
 * In payout account the account holder name is always the legal arrangement
 * ie: trust, soleprops etc, if they exist otherwise the legal entity name is the account holder
 */
export declare const getPayoutAccountHolderName: (legalEntity: ExistingLegalEntity, i18n: Language) => string;
