import { Feature, LineString, Polygon, Position } from "geojson"; export declare function transformScale(feature: Feature, factor: number, origin: Position, axis?: "x" | "y" | "xy"): Feature; /** * Scale a GeoJSON Polygon geometry in web mercator * @param polygon - GeoJSON Polygon geometry * @param scale - scaling factor * @returns - scaled GeoJSON Polygon geometry */ export declare function transformScaleWebMercator(feature: Feature, factor: number, origin: Position): Feature;