import { RefObject } from "react"; import type { JBSelectWebComponent, JBSelectEventType } from 'jb-select'; export type EventProps = { /** * when component loaded, in most cases component is already loaded before react mount so you dont need this but if you load web-component dynamically with lazy load it will be called after react mount */ onLoad?: (e: JBSelectEventType) => void; /** * when all property set and ready to use, in most cases component is already loaded before react mount so you dont need this but if you load web-component dynamically with lazy load it will be called after react mount */ onInit?: (e: JBSelectEventType) => void; onChange?: (e: JBSelectEventType) => void; onKeyUp?: (e: JBSelectEventType) => void; onInput?: (e: JBSelectEventType) => void; }; export declare function useEvents(element: RefObject, props: EventProps): void;