import { MedusaContainer } from "@medusajs/framework/types"; import { CommissionLineDTO } from "@mercurjs/types"; /** * The order→commission links resolve for items but not shipping methods * (and the two cannot be co-resolved in one graph query), so commission is * always read from the commission module by the order's item + shipping ids. */ export declare const getOrderCommissionLines: (scope: MedusaContainer, orderId: string, sellerId?: string) => Promise<{ found: boolean; commission_lines: CommissionLineDTO[]; }>;