import { FnCanvasAccessor, LineCanvasInstance } from '../../types/canvas-shape.js'; type FnLineCanvasStyle = (ctx: CanvasRenderingContext2D, lineCanvas: LineCanvasInstance, x: FnCanvasAccessor, y: FnCanvasAccessor) => void; /** * Builds style FN Line based on parameters. * * @param strokeWidth - stroke width * @param enableDotOverflow - enable dots indicators to be drawn overflowing the plot area * @param radius - scatter plot radius * @returns - fn print Line canvas */ export declare function printLineBuilder(strokeWidth: number, enableDotOverflow: boolean, radius?: number, overlayPadding?: number): FnLineCanvasStyle; export {};