import * as React from "react"; import { LineChartProps } from "../../../components/Charts/Linear"; export interface ChartCardProps extends LineChartProps { title: string; highlightedvalue: string; height?: number; noDataText?: string; } declare const ChartCard: ({ title, highlightedvalue, hideLabels, hidePoints, data, labels, noDataText, dark, color, height, ...lineChartProps }: ChartCardProps) => React.ReactElement; export default ChartCard;