/// import { VisibleProps } from './hooks/common/visible'; import { ZIndexProps } from './hooks/common/z-index'; import { OpacityProps } from './hooks/common/opacity'; import { ZoomsProps } from './hooks/common/zooms'; import { MouseProps } from './hooks/common/mouse'; import { TouchProps } from './hooks/common/touch'; import { ClickProps } from './hooks/common/click'; export declare type LabelMarkerProps = VisibleProps & ZIndexProps & OpacityProps & ZoomsProps & ClickProps & MouseProps & TouchProps & { name?: string; position: Vector2; rank?: number; icon?: AMap.LabelMarkerIconOptions; text?: AMap.LabelMarkerTextOptions; }; declare const LabelMarker: import("react").ForwardRefExoticComponent & ZIndexProps & OpacityProps & ZoomsProps & ClickProps & MouseProps & TouchProps & { name?: string | undefined; position: Vector2; rank?: number | undefined; icon?: AMap.LabelMarkerIconOptions | undefined; text?: AMap.LabelMarkerTextOptions | undefined; } & import("react").RefAttributes>; export default LabelMarker;