import React from 'react';
import { DragCallbacks } from '../../types/renderer';
interface MapDragProps {
    map: google.maps.Map;
    dragCallbacks?: DragCallbacks;
    onBoundaryLabelsCollapse?: () => void;
    onTransformChange?: (transform: {
        x: number;
        y: number;
        rotate: number;
    }) => void;
    isDragMap?: boolean;
    canRotateMap?: boolean;
}
declare const MapDrag: React.FC<MapDragProps>;
export default MapDrag;
//# sourceMappingURL=index.d.ts.map