import type { UseElementHoverOptions } from '.'; type Callback = (state: boolean) => void; type DElementHoverBinding = Callback | (UseElementHoverOptions & { callback: Callback; }); export declare const dElementHover: (el: HTMLElement, binding: DElementHoverBinding) => void; export {};