import { Polygon, MultiPolygon, Sketch, SketchCollection } from "../types/index.js"; /** * Returns a zero polygon geometry (three [0,0] coordinates) * @param sketch */ export declare function zeroPolygon(): { type: string; coordinates: number[][][]; }; /** * Given sketch, returns the mutated sketch with a zero polygon geometry (three [0,0] coordinates) * @param sketch */ export declare function zeroSketch(sketch: Sketch): Sketch; /** * Given sketch array, returns the mutated sketches with a zero polygon geometry (three [0,0] coordinates) * @param sketch */ export declare function zeroSketchArray(sketches: Sketch[]): Sketch[]; /** * Given sketch collection, returns the mutated collection with all child sketches switched to have zero polygon geometry (three [0,0] coordinates) * @param sketchCollection */ export declare function zeroSketchCollection(sketchCollection: SketchCollection): SketchCollection;