import type { ChartDataset } from 'chart.js';
import type { DataFrame } from 'types';
import type { ChartSeries } from './types';
export default function toDataset(df: DataFrame, s: ChartSeries): ChartDataset;
