declare function calculateProductTax({ product, taxClasses, taxCountry, taxRegion, sourcePriceInclTax, deprecatedPriceFieldsSupport, finalPriceInclTax, userGroupId, isTaxWithUserGroupIsActive }: {
    product: any;
    taxClasses: any;
    taxCountry?: string;
    taxRegion?: string;
    sourcePriceInclTax?: boolean;
    deprecatedPriceFieldsSupport?: boolean;
    finalPriceInclTax?: boolean;
    userGroupId?: any;
    isTaxWithUserGroupIsActive: any;
}): any;
export default calculateProductTax;
