import React from 'react';
import { OverlayProps } from '@uiw/react-amap-map';
export * from './useInfoWindow';
export interface InfoWindowProps extends OverlayProps, AMap.InforWindowEvents, AMap.InforWindowOptions {
    /** @deprecated use {@link visible} */
    visiable?: boolean;
    /** 覆盖物是否可见 */
    visible?: boolean;
    children?: JSX.Element;
}
export declare const InfoWindow: React.ForwardRefExoticComponent<InfoWindowProps & React.RefAttributes<InfoWindowProps>>;
