import type { WorkSlideChartSeries, WorkSpreadsheetChartLineDash } from '../work-types'; export interface PresentationChartSeriesFill { color: string; opacity: number; } export interface PresentationChartSeriesLine { color: string; width: number; dash: WorkSpreadsheetChartLineDash; } export declare function presentationChartSeriesFill(series: WorkSlideChartSeries, seriesIndex: number, defaultOpacity?: number, defaultColor?: string): PresentationChartSeriesFill; export declare function presentationChartSeriesLine(series: WorkSlideChartSeries, seriesIndex: number, defaultWidth: number, defaultColor?: string): PresentationChartSeriesLine; export declare function fillPresentationChartShape(context: CanvasRenderingContext2D, fill: PresentationChartSeriesFill, draw: () => void): void; export declare function strokePresentationChartPath(context: CanvasRenderingContext2D, line: PresentationChartSeriesLine): void; export declare function drawPresentationChartMarker(context: CanvasRenderingContext2D, series: WorkSlideChartSeries, seriesIndex: number, x: number, y: number, defaultVisible: boolean, defaultColor?: string): void;