export declare const drawPolyStoryStyles: { MapDrawGeoJSONContainer: { display: string; gridTemplateColumns: string; gridTemplateRows: string; gridTemplateAreas: string; width: string; height: string; }; MapDrawGeoJSONMapContainer: { gridArea: string; width: string; height: string; }; MapDrawGeoJSONControlsContainer: { gridArea: string; width: string; height: string; }; MapDrawGeoJSONTextAreaContainer: { gridArea: string; width: string; height: string; }; MapDrawGeoJSONTextArea: { padding: number; border: string; width: string; height: string; fontSize: string; }; }; export declare const useGeoJSON: () => { editModes: { key: string; value: string; }[]; isInEditMode: boolean; geojson: GeoJSON.FeatureCollection; setGeojson: (geojson: GeoJSON.FeatureCollection) => void; geojsonText: string; setGeojsonText: (text: string) => void; drawMode: string; currentFeatureNrToEdit: number; setCurrentFeatureNrToEdit: (featureNumber: number) => void; changeDrawMode: (mode: string) => void; setEditMode: (on: boolean) => void; };