export declare type IBurnDownData = { coordinate: { [key: string]: number; }; expectCount: number; } | null; interface IBurnDownConfig { endDate: string; restDayShow: boolean; restDays: string[]; } declare type IExportAxis = number[] | [[string, number], [string, number]]; declare type IMarkAreaData = [{ xAxis: string; }, { xAxis: string; }][]; export declare function transformBurnDownChartData(data: IBurnDownData, { endDate: end, restDayShow, restDays, }: IBurnDownConfig): { xAxis: string[]; yAxis: number[]; exportAxis: IExportAxis; markAreaData: IMarkAreaData; }; export {};