//#region src/checkbox/useBubbleLock.d.ts /** * When click on the label, * the event will be stopped to prevent the label from being clicked twice. * label click -> input click -> label click again */ declare function useBubbleLock(onOriginInputClick?: (e: Event) => void): readonly [() => void, (e: Event) => void]; //#endregion export { useBubbleLock as default };