import { LineChartProps } from './interfaces';
export { LineChartProps };
declare function LineChart<T extends number | string | Date>({ height, xScaleType, yScaleType, series, detailPopoverSize, statusType, ...props }: LineChartProps<T>): JSX.Element;
export default LineChart;
