import { Image } from '../Image.js'; import type { Mask } from '../Mask.js'; import type { Point } from '../utils/geometry/points.js'; export interface DrawPointsOptions { /** * Color of the points - An array of numerical values, one for each channel of the image. If less values are defined than there are channels in the image, the remaining channels will be set to 0. * @default A black pixel. */ color?: number[]; /** * Origin of the points relative to a parent image (top-left corner). * @default `{row: 0, column: 0}` */ origin?: Point; /** * Image to which the resulting image has to be put. */ out?: Image | Mask; } export declare function drawPoints(image: Image, points: Point[], options?: DrawPointsOptions): Image; export declare function drawPoints(image: Mask, points: Point[], options?: DrawPointsOptions): Mask; //# sourceMappingURL=drawPoints.d.ts.map