import { IPivotViewValueType, PivotTable, PivotView } from '@univerjs-pro/engine-pivot';
import { IPivotTableCubeConfig } from './type';
export declare const DEFAULT_DATE_FORMAT = "YYYY-MM-DD";
export declare function unixToExcel(unixTimestamp: number): number;
export declare function generatePivotViewDimensionArr(pivot: PivotTable, view: PivotView, isZhCN: boolean, config: IPivotTableCubeConfig): {
    dataArr: IPivotViewValueType[][];
    dataArrWithSplit: IPivotViewValueType[][][];
};
