import { Sketch, SketchCollection, Polygon, Metric, MultiPolygon } from "../types/index.js"; import { Georaster } from "geoblaze"; interface OverlapRasterOptions { /** Truncates results to 6 digits, defaults to true */ truncate?: boolean; } /** * Returns area of sketch overlap with raster as a metric object. * If sketch collection, then calculate overlap for all child sketches also */ export declare function overlapRasterArea( /** metricId value to assign to each measurement */ metricId: string, /** Cloud-optimized geotiff to calculate overlap with, loaded via loadCog or geoblaze.parse() */ raster: Georaster, /** single sketch or collection to calculate metrics for. */ sketch: Sketch | SketchCollection, options?: Partial): Promise; export {};