import React from "react"; export interface InfoSectionCardProps { icon: React.ReactNode; title: string; count?: number; /** Optional action element displayed on the right side of the header */ action?: React.ReactNode; children: React.ReactNode; } declare const InfoSectionCard: React.FC; export default InfoSectionCard;