import type { LayerSpecification, MapOptions, MarkerOptions, PopupOptions, } from 'mapbox-gl'; type LayerType = LayerSpecification['type']; declare module 'ember-get-config' { declare const config: { 'mapbox-gl': { accessToken: string; map?: Partial; marker?: Partial; popup?: Partial; layers?: { [key in LayerType]?: Pick; }; }; [key: string]: any; }; export default config; }