import { DataRowsWithKey, Settings } from "../types"; type MappedSeries = { crossValue: any; mainValues: any[]; openValue: any; closeValue: any; highValue: any; lowValue: any; key: string; row: any; }; interface MappedSeriesArray extends Array { key: string; } export declare function ohlcData(settings: Settings, data: DataRowsWithKey): MappedSeriesArray[]; export {};