import { Sketch, SketchCollection, Polygon, Metric } from "../types/index.js"; /** * Calculates the area of each sketch and collection. */ export declare function area( /** single sketch or collection. */ sketch: Sketch | SketchCollection, options?: { /** Optional metric identifier, defaults to 'area' */ metricId?: string; /** If sketch collection, will include its child sketch metrics in addition to collection metrics, defaults to true */ includeChildMetrics?: boolean; /** If collection, includes metrics with percent of total area for each sketch , in addition to raw area value metrics, defaults to false */ includePercMetric?: boolean; }): Promise;