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