/// <reference types="react" />
interface HorizontalImageCardProps {
    iconOrImage: JSX.Element;
    title: string;
    link: {
        label: string;
        href: string;
    };
    layoutClassName?: string;
    external?: boolean;
}
export declare const HorizontalImageCard: ({ title, layoutClassName, external, link, iconOrImage, }: HorizontalImageCardProps) => JSX.Element;
export {};
