import { Binding } from '../../types'; export declare function bindEvents(el: HTMLElement | Window | Document, bindings: Binding[] | Binding, sharedOptions?: AddEventListenerOptions): () => void; export declare function bindEventsOnce(el: HTMLElement, bindings: Binding[] | Binding, sharedOptions?: AddEventListenerOptions): () => void;