import React, { ReactNode } from 'react'; import './InfoContainer.css'; export type InfoRow = { title?: string | ReactNode; content: string | ReactNode; }; export type InfoContainerProps = { rows: InfoRow[]; className?: string; contentFontColor?: "base" | "secondary" | "tertiary" | "black"; contentFontSize?: "tiny" | "small" | "medium" | "large"; seeMoreCb?: Function; testId?: string; seeMoreTestId?: string; count?: string | number | React.ReactNode; }; declare const InfoContainter: (props: InfoContainerProps) => React.JSX.Element; export default InfoContainter;