import { FC } from 'react'; import { ConvertedProductType } from '../types'; export declare type UpdateCartPropsType = { selectedVariant: ConvertedProductType; updateCartBtnClassName: string; quantity: number; onUpdateCompleted?: (data: any) => void; onError?: (data: any) => void; withDelay: boolean; }; declare const UpdateCart: FC; export default UpdateCart;