/// <reference types="react" />
import * as React from 'react';
export interface BaiduMapProps {
    /**
     * 百度地图的密钥
     */
    ak: string;
    /**
     * 当检测到BMap加载完毕后执行
     */
    callback: (map: any) => void;
    /** 容器id，可选 */
    id: string;
}
/**
 * BaiduMap 的 React 封装
 */
declare class BaiduMap extends React.Component<BaiduMapProps, any> {
    static defaultProps: BaiduMapProps;
    componentWillMount(): void;
    componentDidMount(): void;
    render(): JSX.Element;
}
export default BaiduMap;
