import { CTA } from "../../types";
export interface InfoblockProps {
    overline?: string;
    title: string;
    content?: string | JSX.Element;
    ctaPrimary?: CTA;
    ctaSecondary?: CTA;
    inverse: boolean;
    image: string;
    altText?: string;
    imageShadow: boolean;
    imageType?: "circle";
    aspectRatio?: "4/3" | "9/16";
}
export declare const Infoblock: ({ overline, title, content, ctaPrimary, ctaSecondary, inverse, image, altText, imageShadow, aspectRatio, }: InfoblockProps) => import("react/jsx-runtime").JSX.Element;
