import { LagLngXY } from "./LagLngXY";
import { Polygon, Feature } from "geojson";
export declare namespace Cropper {
    function getLagLngXY(geoJson: GeoJSON.FeatureCollection<Polygon>): LagLngXY[];
    function cropImage(feature: Feature<Polygon>, img: string, latLongXY: LagLngXY): Promise<{
        img: string;
        LatLng: [number[], number[]];
    }>;
    function getCrop(canvas: any, offsetX: any, offsetY: any, width: any, height: any, callback: any): void;
}
