import { RefObject } from "react"; import type { JBCheckboxEventType, JBCheckboxWebComponent } from 'jb-checkbox'; export type EventProps = { onChange?: (e: JBCheckboxEventType) => void; onBeforeChange?: (e: JBCheckboxEventType) => void; }; export declare function useEvents(element: RefObject, props: EventProps): void;