import { Area, Municipality } from "./types";
import { Feature, FeatureCollection, MultiPolygon, Polygon, featureCollection } from "@turf/helpers";
export declare const municipalitiesToPolygons: (municipalities: Municipality[]) => Promise<Record<number, FeatureCollection>>;
export declare const createPolygons: (municipality: Municipality, extraAreas: Area[], municipalityPolygons: Record<number, FeatureCollection<Polygon | MultiPolygon>>) => {
    featureCollection: FeatureCollection<Polygon | MultiPolygon>;
    extraPolygons: Map<number, Feature<Polygon | MultiPolygon>>;
};
