import type { HoverPanelPreloadInitiator, PanelPreloadInitiatorType } from "./preloadInitiators"; /** * Fires `onShouldPreload` for the currently hovered entity after a debounce * delay. Rapid mouse passes that do not settle cancel any pending timer. * * @internal */ export declare const useHoverPreloadInitiator: (initiator: HoverPanelPreloadInitiator | undefined, onShouldPreload: (id: string, type: PanelPreloadInitiatorType) => void) => void;