import { ChartData } from './chart-element'; type Config = { type: string; aspect?: string; }; export declare function toAxis(data: ChartData, { aspect, type }: Config): { total: number; groups: HTMLDivElement; axis: HTMLDivElement; }; export {};