import { FC } from 'react'; interface QuestChart { userId: string; token: string; questId: string; headingText: string; headingTextColor: string; chartType: "LineChart" | "AreaChart" | "BarChart"; dataType: "Claim" | "View" | "Metric"; boxWidth: string; bgColor: string; disabledGrid: boolean; metricIds: string[]; } declare const QuestChart: FC; export default QuestChart;