import { ChartData } from './chart-element'; type Config = { total: number; type: string; variant: string; }; export declare function toLines(data: ChartData, { total, type, variant }: Config): HTMLDivElement; export {};