import type { ControlOptionItem, ISelectControlOption } from './baseControl/selectControl'; import SelectControl from './baseControl/selectControl'; export { MapTheme }; export default class MapTheme extends SelectControl { getDefault(option?: Partial): ISelectControlOption; getStyleOptions(): ControlOptionItem[]; getMapStyle(): any; onAdd(): HTMLElement; protected onMapThemeChange: () => void; protected getIsMultiple(): boolean; }