import React from 'react'; interface Props { items: any[]; loading: boolean; onQuantityChange: (uniqueId: string, value: number, item?: any) => void; onRemove: (uniqueId: string, item?: any) => void; } export declare const ProductList: React.FC; export {};