import type { ProgrammaticZoomHandlers } from '../../core/types/zoom.js'; /** * Ref of the TimeseriesChart * @public */ export interface TimeseriesChartRef extends ProgrammaticZoomHandlers { /** Chart div element */ element: HTMLDivElement | null; /** Returns the current serialized config of the time series chart .*/ getConfig: () => string; /** Downloads map raw data .*/ downloadData: () => void; }