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