/// <reference types="react" />
interface InfoCardProps {
    title: string;
    content: JSX.Element | string;
    layoutClassName?: string;
}
export declare const InfoCard: ({ title, content, layoutClassName }: InfoCardProps) => JSX.Element;
export {};
