import React from 'react'; import { IUnit, IEpic } from './search'; export interface IEpicReportChart { allRemainTimes: number; allStoryPoints: number; completedRemainTimes: number; completedStoryPoints: number; groupDay: string; issueCompletedCount: number; issueCount: number; unEstimateIssueCount: number; } export interface IEpicReportTable { } export interface EpicReportProps { loading: boolean; data: IEpicReportChart[]; tableData: IEpicReportTable[]; unit: IUnit; epicId: string; epics: IEpic[]; animation?: boolean; } declare const EpicReport: React.FC; export default EpicReport;