/// /*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { Step } from '@datashaper/workflow'; import type { StepChangeFunction } from '../../types.js'; export type CheckboxChangeHandler = (event?: React.FormEvent, checked?: boolean) => void; export declare function useCheckboxChangeHandler(step: Step, updateFn: (step: Step, newValue: boolean | undefined) => void, onChange?: StepChangeFunction): CheckboxChangeHandler;