import type { IBarOptions, ICanvas, IDrawBarData, IEdges, IEventHandlers, IGeometry, IHoverData, IHoverOptions, ILineOptions, IPoint, IRowOptions } from '../types'; export interface ILineBarData { id: string; value: number; bars: ReadonlyArray; label?: string; } export declare type IData = IDrawBarData & IPoint; export declare type LineChartClickHandler = (data: Readonly) => void; export declare type LineChartHoverHandler = (value?: IHoverData>) => void; declare type EventHandlers = IEventHandlers; export declare type ILineBarOptions = ICanvas & EventHandlers & IHoverOptions & Partial & IRowOptions & ILineOptions & IBarOptions; export declare type IOptions = ILineBarOptions & IGeometry; export {};