import { MapLibreStyleSpecs } from '@unovis/ts'; export type MapPointDataRecord = { name: string; longitude: number; latitude: number; normal: number; blocked: number; }; export declare const data: MapPointDataRecord[]; export declare const totalEvents: number; export declare const generateStyle: (backgroundColor: string, countryFillColor: string, countryBoundaryColor: string, coastlineColor: string) => MapLibreStyleSpecs; export declare const mapStyleLight: MapLibreStyleSpecs; export declare const mapStyleDark: MapLibreStyleSpecs;