import { EpicReportProps } from './index'; import { EpicReportSearchProps } from './search'; import { IUnit } from '../iteration-speed/search'; export interface EpicReportConfig { unit?: IUnit; epicId?: string; projectId?: string; } declare const useEpicReport: (config?: EpicReportConfig | undefined, onFinish?: Function | undefined) => [EpicReportProps, EpicReportSearchProps]; export default useEpicReport;