/// <reference types="googlemaps" />
export interface IBubbleInfoOptions {
    content: string;
    position: google.maps.LatLng;
    shadowStyle?: number;
    padding?: number;
    backgroundColor?: string;
    borderRadius?: number;
    arrowSize?: number;
    borderWidth?: number;
    borderColor?: string;
    disableAutoPan?: boolean;
    hideCloseButton?: boolean;
    arrowPosition?: number;
    backgroundClassName?: string;
    minWidth?: number;
    minHeight?: number;
    arrowStyle?: number;
}
