declare function updateProductPrices({ product, rate, sourcePriceInclTax, deprecatedPriceFieldsSupport, finalPriceInclTax }: {
    product: any;
    rate: any;
    sourcePriceInclTax?: boolean;
    deprecatedPriceFieldsSupport?: boolean;
    finalPriceInclTax?: boolean;
}): void;
export default updateProductPrices;
