export default SparklineChart; /** SparklineChart */ declare class SparklineChart extends React.PureComponent { constructor(props: any); randomComponentId: string; chartContext: {}; svgRef: React.RefObject; componentRef: React.RefObject; state: { hoveredLabel: null; }; _shouldShowTooltip: () => any; _useCreateContext: () => { margin: { top: number; right: number; bottom: number; left: number; }; width: any; height: any; innerTop: number; innerLeft: number; innerBottom: number; innerWidth: number; innerHeight: number; data: any; xScale: any; yScale: any; highlightedStartingIndex: any; highlightedEndingIndex: any; lineGenerator: any; areaGenerator: any; color: any; }; _getLabelAt: (data: any, position: any) => any; _getValueAt(data: any, position: any): any; _getValues: (data: any) => any; _getLabels: (data: any) => any; _drawSparkline: () => void; _areDatesEqual(date1: any, date2: any): boolean; _getLineColorId(dataSet: any, componentId: any): string; _getAreaMaskId(componentId: any): string; _drawLines: (dataContainer: any) => void; _updateLines: (container: any) => void; _updateComponent: (container: any, className: any, fncUpdater: any) => void; componentDidMount(): void; componentDidUpdate(prevProps: any): void; _updateContext(): void; render(): React.JSX.Element; } declare namespace SparklineChart { let displayName: string; namespace propTypes { let dataHook: PropTypes.Requireable; let className: PropTypes.Requireable; let width: PropTypes.Requireable; let height: PropTypes.Requireable; let data: PropTypes.Validator<(PropTypes.InferProps<{ label: PropTypes.Requireable; value: PropTypes.Requireable; }> | null | undefined)[]>; let color: PropTypes.Requireable; let highlightedStartingIndex: PropTypes.Requireable; let highlightedEndingIndex: PropTypes.Requireable; let getTooltipContent: PropTypes.Requireable<(...args: any[]) => any>; let onHover: PropTypes.Requireable<(...args: any[]) => any>; let animationDuration: PropTypes.Requireable; } namespace defaultProps { let animationDuration_1: number; export { animationDuration_1 as animationDuration }; } } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SparklineChart.d.ts.map