import React from 'react'; import { CRSTypes } from 'gcoord'; export declare const bdDecrypt: (bdLat: number, gcjLng: number) => { lat: number; lng: number; }; export interface MapSelectData { province: string; city: string; district: string; address: string; lat: number; lng: number; } export type MapSelectValue = Record; export interface MapSelectProps { onChange?: (value?: MapSelectValue) => void; onSelect?: (data?: MapSelectData) => void; value?: MapSelectValue; defaultValue?: MapSelectValue; type?: CRSTypes; } export interface MapSelectRef { search: (keyword: string) => void; } export declare const MapSelect: React.ForwardRefExoticComponent>;