/// /*! * 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 { IDropdownOption } from '@fluentui/react'; import type { StepChangeFunction } from '../../types.js'; export type DropdownChangeAllHandler = (event: React.MouseEvent, options?: IDropdownOption[]) => void; export declare function useDropdownChangeAllHandler(step: Step, updateFn: (step: Step, optionKeys: (string | number)[]) => void, onChange?: StepChangeFunction): DropdownChangeAllHandler;