import { ReactNode } from "react"; export interface InfoCardProps { icon?: string; heading?: string; content?: ReactNode; noPadding?: boolean; textColor?: "white" | "black" | "primary"; bottomContent?: ReactNode; } declare const InfoCard: ({ icon, heading, content, bottomContent, noPadding, textColor, }: InfoCardProps) => JSX.Element; export default InfoCard;