///
import React, { useImperativeHandle } from 'react';
import { OverlayProps } from '@uiw/react-amap-map';
import { useMapTypeControl } from './useMapTypeControl';
export * from './useMapTypeControl';
export interface MapTypeControlProps extends OverlayProps, AMap.MapTypeOptions {
/** @deprecated use {@link visible} */
visiable?: boolean;
/** 覆盖物是否可见 */
visible?: boolean;
}
export const MapTypeControl = React.forwardRef((props, ref) => {
const { mapTypeControl } = useMapTypeControl(props);
useImperativeHandle(ref, () => ({ ...props, mapTypeControl }), [mapTypeControl]);
return null;
});