import React from 'react'; import { EChartOption } from 'echarts'; import { IBurnDownData } from './utils'; export declare type IBurndownChartType = 'remainingEstimatedTime' | 'storyPoints' | 'issueCount'; export interface BurnDownProps { type: IBurndownChartType; loading: boolean; data: IBurnDownData; endDate: string; restDayShow: boolean; restDays: string[]; option?: EChartOption; } declare const _default: React.NamedExoticComponent; export default _default;