import type { ReactNode } from 'react'; export interface InfoCardRowSection { title: string; caption: string; icon?: ReactNode; } export interface InfoCardRowProps { lead: InfoCardRowSection; stats: [InfoCardRowSection, InfoCardRowSection]; className?: string; } export declare function InfoCardRow({ lead, stats, className }: InfoCardRowProps): import("react").JSX.Element; //# sourceMappingURL=info-card-row.d.ts.map