import React from 'react'; import '../index.less'; export interface IAxis { title: any; line: any; gridAlign: any; labels: any; tickLine: any; grid: any; } export interface IMiniAreaProps { color?: string; height: number; borderColor?: string; line?: boolean; animate?: boolean; xAxis?: IAxis; yAxis?: IAxis; scale?: any; borderWidth?: number; forceFit?: boolean; data: Array<{ x: number | string; y: number; }>; } declare const _default: React.ComponentClass; export default _default;