import React from 'react'; import './LinkedList.css'; export type InfoRow = { title: string | React.ReactNode; content: string | React.ReactNode; }; export type LinkedListProps = { count?: string | number | React.ReactNode; className?: string; listData: InfoRow[]; heading?: string; seeMore?: Function; contentFontColor?: "base" | "secondary" | "tertiary" | "black"; contentFontSize?: "tiny" | "small" | "medium" | "large"; testId?: string; openReferenceMap?: Function; params?: any; isReferenceMapEnabled?: boolean; }; declare const LinkedList: (props: LinkedListProps) => React.JSX.Element; export default LinkedList;