import type { IDrawBarData, IDrawBarOptions, IDrawData, IDrawLevelOptions, IDrawLineOptions, IParams, IPoint } from './types'; export declare function setupCanvas(canvas: HTMLCanvasElement, ratio: number): void; export declare function clearCanvas(canvas: HTMLCanvasElement, width: number, height: number): void; export declare function drawLabel(ctx: CanvasRenderingContext2D, skeleton: boolean | undefined, value: string, x: number, y: number, w: number, h: number): void; export declare function setRowStyle(params: IParams, isFooter?: boolean): void; export declare function drawRows(params: IParams): IParams; export declare function drawChartFill

(params: IParams): IParams; export declare function drawChartLine

(params: IParams): IParams; export declare function drawBars

(skipLeft?: number): (params: IParams) => IParams; export declare function drawFooter(params: IParams): IParams;