import type { AccountHolderOption } from '../core/types/AccountHolder.types';
import type { ExistingLegalEntity } from '../core/models/api/legal-entity';
export declare enum BusinessType {
    INDIVIDUAL = "individual",
    COMPANY = "company",
    INCORPORATED_PARTNERSHIP = "partnershipIncorporated",
    UNINCORPORATED_PARTNERSHIP = "partnershipUnincorporated",
    INDIVIDUAL_TRUSTEE = "individualTrustee",
    COMPANY_TRUSTEE = "companyTrustee",
    SOLE_PROPRIETORSHIP = "soleProprietorship",
    INCORPORATE_ASSOCIATION = "associationIncorporated"
}
export declare const useBusinessSetup: (legalEntityResponse: ExistingLegalEntity) => BusinessType | AccountHolderOption | undefined;
