import React from 'react';
interface DataPoint {
    date: string | Date;
    value: number;
}
interface LineGraphProps {
    data: DataPoint[];
    title?: string;
    yAxisLabel?: string;
    color?: string;
    className?: string;
    loading?: boolean;
}
declare const LineGraph: React.FC<LineGraphProps>;
export default LineGraph;
