interface LineChartProps {
    data: number[];
    currentPrice: number;
    maxValue?: number;
    minValue?: number;
    maxIndex?: number;
    minIndex?: number;
}
export declare function LineChart({ data, currentPrice, maxValue, minValue, maxIndex, minIndex, }: LineChartProps): import("react/jsx-runtime").JSX.Element;
export {};
