import { MapDefinition, MapState } from './types'; import { ContinentName, MapName } from './map.library'; export declare class MapNotFoundError extends Error { constructor(mapName: string, continent: string); } export declare const MAP_REGISTRY: Record>>; export declare function getMapDefinition(continent: ContinentName, mapName: MapName): MapDefinition; export declare function createMapState(def: MapDefinition): MapState; //# sourceMappingURL=map.registry.d.ts.map