/** * Map a mapbox element's events to a Vue component. * @param {Function} emitFn The emit function for the current component * @param {Ref} mapboxElement The Mapbox element bound to the component * @param {string[]} [events] The events to map * @param {string} [layerId] The layer on which the events are delegated * @returns {void} */ export declare function useEventsBinding(emitFn: any, mapboxElement: any, events?: any[], layerId?: any): void;