import React from "react";
export interface CartPromoProps {
    className?: string;
    promoTitle?: string;
    href?: string;
    btnLabel?: string;
}
export declare const CartPromo: React.FC<CartPromoProps>;
