import type { ExistingLegalEntity, LegalEntity } from '../core/models/api/legal-entity'; import type { TFunction } from '../../types'; export declare const getIndividualLegalEntityName: (legalEntityResponse?: LegalEntity) => string; 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, t: TFunction<"banking">) => string;