/** @ignore */ /** */ import type { IPoint } from "./IPoint"; import type { IGraphics } from "../render/backend/Renderer"; /** * @ignore */ export declare function segmentedLine(display: IGraphics, segments: Array>>): void; /** * @ignore */ export declare function line(display: IGraphics, points: Array): void; /** * @ignore */ export declare function moveTo(display: IGraphics, point: IPoint): void; /** * @ignore */ export declare function clear(display: IGraphics): void; /** * @ignore */ export declare function smoothedSegmentedline(display: IGraphics, segments: Array>>, tensionX: number, tensionY: number): void; /** * @ignore */ export declare function smoothedLine(display: IGraphics, points: Array, tensionX: number, tensionY: number): string | undefined; //# sourceMappingURL=Draw.d.ts.map