interface Props {
    highlight: string;
    price: string;
    salesPrice?: string;
    installments?: number;
    buttonLabel: string;
    checkoutLink: string;
    afterButton?: string;
    ctaItems?: string[];
    className?: string;
    grafismColor?: string;
    lineColor?: string;
    lpBgColor?: string;
    lpHeight?: string;
    lpClassName?: string;
}
declare const CtaWithItemsAndPriceSection: ({ highlight, price, salesPrice, installments, buttonLabel, checkoutLink, afterButton, ctaItems, className, grafismColor, lineColor, lpBgColor, lpHeight, lpClassName, }: Props) => import("react/jsx-runtime").JSX.Element;
export default CtaWithItemsAndPriceSection;
