import { Settings } from "../types"; export type SplitData = { key: string; crossValue: string; mainValue: string | number | boolean | Date; row: any; }; export declare function splitData(settings: Settings, data: any[]): SplitData[][];