import { PointVM } from './PointVM'; export interface ICustomConfig { googleAPIKey: string; country: string[]; countryColors: string[]; } export interface ISettingsVM { googleMap: boolean; zoomMap: number; styleGoogleMap: string; countryList: string[]; countryColorList: string[]; country: string; countryColor: string; strokeCountryColor: string; strokeCountryWidth: string; markerColor: string; listPoints: PointVM[]; openModal: boolean; modalWidth: number; googleMapApiKey: string; config: ICustomConfig; } export declare class SettingsVM implements ISettingsVM { googleMap: boolean; zoomMap: number; styleGoogleMap: string; countryList: string[]; countryColorList: string[]; country: string; countryColor: string; strokeCountryColor: string; strokeCountryWidth: string; markerColor: string; listPoints: PointVM[]; openModal: boolean; modalWidth: number; googleMapApiKey: string; config: ICustomConfig; }