import React from 'react';
interface Props {
    children: React.ReactNode;
    highlight: string;
    buttonLabel: string;
    checkoutLink: string;
    afterButton?: string;
    className?: string;
    buttonBgColor?: string;
    buttonTextColor?: string;
    buttonBorderColor?: string;
    lineColor?: string;
    grafismColor?: string;
    lpBgColor?: string;
    lpHeight?: string;
    lpClassName?: string;
}
declare const CtaCustomSection: ({ children, highlight, buttonLabel, checkoutLink, afterButton, className, buttonBgColor, buttonTextColor, buttonBorderColor, lineColor, grafismColor, lpBgColor, lpHeight, lpClassName, }: Props) => import("react/jsx-runtime").JSX.Element;
export default CtaCustomSection;
