import { type BgVariant } from '../../utils/bg.js'; export interface CtaWithImageProps { headline?: string; description?: string; image?: string; cta?: React.ReactNode; bg?: BgVariant; className?: string; } export declare function CtaWithImage({ headline, description, image, cta, bg, className, }: CtaWithImageProps): import("react/jsx-runtime").JSX.Element;