import { FC } from "react";
export interface CartBoxProps {
    boxTitle?: string;
    validPrice?: number;
    maxPrice?: number;
}
export declare const CartBox: FC<CartBoxProps>;
