/** * Utils to calculate taxes. */ import { Account } from './types/Accounts'; import { TaxType } from './types/TaxType'; import type { TierType } from './types/TierType'; export * from './european-countries'; export * from './eu-vat'; export * from './nz-gst'; export * from './types/TaxType'; type Tax = { type: TaxType; percentage: number; }; /** * Returns a list of taxes that may apply for this countribution type */ export declare const getApplicableTaxes: (account: Account | null, host: Account | null, tierType: TierType) => Tax[]; /** * Returns a list of taxes that may apply for this account */ export declare const getApplicableTaxesForCountry: (country: string) => TaxType[];