import { PropType } from 'vue';
import { LngLat } from '../../../utils/types';
export declare const SearchMapView: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    /** 显示在地图上的点数组 */
    pois: {
        type: PropType<T.LocalSearchPoi[]>;
        default: () => never[];
    };
    /** 显示信息窗口的坐标 */
    target: {
        type: PropType<LngLat | null>;
        default: () => null;
    };
    /** 信息窗口的内容 */
    content: {
        type: StringConstructor;
        default: string;
    };
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
    [key: string]: any;
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    /** 点击地图上的标点触发 */
    "poi-click": (e: T.LocalSearchPoi) => true;
    "update-target": (e: LngLat | null) => true;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    /** 显示在地图上的点数组 */
    pois: {
        type: PropType<T.LocalSearchPoi[]>;
        default: () => never[];
    };
    /** 显示信息窗口的坐标 */
    target: {
        type: PropType<LngLat | null>;
        default: () => null;
    };
    /** 信息窗口的内容 */
    content: {
        type: StringConstructor;
        default: string;
    };
}>> & Readonly<{
    "onPoi-click"?: ((e: T.LocalSearchPoi) => any) | undefined;
    "onUpdate-target"?: ((e: LngLat | null) => any) | undefined;
}>, {
    content: string;
    target: LngLat | null;
    pois: T.LocalSearchPoi[];
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
