import './amap.css'; import type { FC } from 'react'; export interface MapValue { lat: number; lng: number; address?: string; } export interface AmapProps { ak?: string; zoom?: number; placeholder?: string; showToolBar?: boolean; showGeolocation?: boolean; height?: number; value?: MapValue; onChange?: (value?: MapValue) => void; } export declare const AmapModal: FC>; export declare const Amap: FC; export default Amap;