import React from 'react';
export interface InfoWindowProps extends Omit<AMap.InfoOptions, 'content' | 'anchor' | 'size'> {
    anchor?: AMap.Anchor;
    height?: number;
    size?: AMap.Vector2;
    visible?: boolean;
    events?: any;
}
export declare const InfoWindow: React.FC<InfoWindowProps>;
