import { Settings } from "../types"; export interface SplitAndBasedData { key: string; crossValue: string; mainValue: number; baseValue: number; row: any; } export declare function splitAndBaseData(settings: Settings, data: any): SplitAndBasedData[][];