import { FC } from "react";
export interface CartFooterProps {
    label?: string;
    totalPrice?: string;
}
export declare const CartFooter: FC<CartFooterProps>;
export default CartFooter;
