/** * * * Represents a high-frequency time series with named fields, sample data, and statistical * summaries. */ export declare class TimeSeries { /** * * The names of the fields (columns) in the time series. */ fields: Array; /** * * The sample data, where each inner list represents one sample across all fields. */ samples: Array>; /** * * The minimum values for each field. */ min: Array; /** * * The maximum values for each field. */ max: Array; /** * * The mean values for each field. */ mean: Array; /** * * The median values for each field. */ median: Array; /** * * The variance values for each field. */ variance: Array; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): TimeSeries; }