import type { CapabilityName } from '../core/models/api/capability';
import type { ExistingLegalEntity } from '../core/models/api/legal-entity';
import type { AccountHolderOption } from '../types/accountHolder';
/**
 ** Account holder option is not stored in backend as it does not effect any check evaluations.
 ** The value is computed in the front end based on the associations and current flow of the legalEntity
 * */
export declare const getDefaultAccountHolderType: (legalEntityResponse: ExistingLegalEntity | undefined, isTypeChanging?: boolean, accountHolder?: AccountHolderOption) => AccountHolderOption | undefined;
export declare const allowIndividualWithoutSoleProp: (capabilities: CapabilityName[]) => boolean;
