import { default as React } from 'react'; import { BeatLikeOffer, MicroInsightCardProps } from '../interfaces'; import { Beat } from '../../core/types/Beat'; export interface InsightCardProps extends MicroInsightCardProps { beat: Beat | BeatLikeOffer; index?: number; } export declare const InsightCard: React.FC;