import type { Image } from '../Image.js'; import type { Point } from '../geometry/index.js'; import type { DrawMarkerOptions } from './drawMarker.js'; /** * Draw markers on the image. * @param image - Image to process. * @param points - Markers center points. * @param options - Draw marker options. * @returns The image with the markers drawing. */ export declare function drawMarkers(image: Image, points: Point[], options?: DrawMarkerOptions): Image; //# sourceMappingURL=drawMarkers.d.ts.map