import type { FC } from 'react'; import './CustomHoverLayer.less'; interface CustomHoverLayerProps { clickInfo?: any; setIsHoverClickRef: (isHover: boolean) => void; clickTypeOnMouseMove?: () => void; onHoverClick?: (clickType: any, isSelect: boolean) => void; _pageZoneHoverContainerId?: string; } export declare const HoverBorderClassNames: { default: string; arrow: string; border: string; left: string; top: string; right: string; bottom: string; }; export declare const CLICK_ITEM: { eventEdit: { width: number; title: string; }; pageJump: { width: number; title: string; }; refreshPage: { width: number; title: string; }; refreshBOFramer: { width: number; title: string; }; }; export declare const CLICK_HEIGHT = 16; export declare type HoverBorderType = keyof typeof HoverBorderClassNames; declare const CustomHoverLayer: FC; export default CustomHoverLayer;