import * as React from "react"; import { DomainPropType, ScalePropType } from "victory-core"; interface ScaleType { x: ScalePropType; y: ScalePropType; } interface PaddingType { top: number; right: number; bottom: number; left: number; } export interface Props { accessibleTitle?: string; data: object[][]; scale?: ScaleType; width: number; height: number; domain?: DomainPropType; padding?: PaddingType; xAxis?: React.ReactNode; yAxis?: React.ReactNode; yAxisLabelText?: string; xAccessorProp?: any; yAccessorProp?: any; tooltipLabels?: any; categoryProp?: string; titleContent?: React.ReactNode; insightContent?: React.ReactNode; notesContent?: React.ReactNode; } /** * A Line Chart shows the evolution of up to 4 variables with quantitative values, such as dollars, over a continuous interval or time period, such as 12 months. */ declare const LineChart: React.FunctionComponent; export default LineChart;