import { Image } from '../../Image.js'; import type { Point } from '../../geometry/index.js'; /** * Draw source, destination and transformed points on an image. * @param source - Source points. * @param destination - Destination points. * @param result - Transformed points. * @param imageSide - Dimension of the image. Should be odd integer. * @returns The image with the points. */ export declare function drawResult(source: Point[], destination: Point[], result: Point[], imageSide?: number): Image; //# sourceMappingURL=drawResult.d.ts.map