import { ProductCart } from "./cartProductTypes"; export declare const reducerUsdc: (previousValue: number, currentValue: ProductCart) => number; export default function getTotalPrices(cart: ProductCart[]): { totalPriceEth: number; totalPriceUsdc: number; };