import { ProductCart } from "@core/types"; export declare function getTotalPrices(cart: ProductCart[]): { totalPriceEth: number; totalPriceUsdc: number; }; export declare function getUnitPrice(product: ProductCart): bigint;