/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { RecodeArgs, Value } from '@datashaper/schema'; import type { Step } from '@datashaper/workflow'; import type ColumnTable from 'arquero/dist/types/table/column-table'; import type { StepChangeFunction } from '../../../../types.js'; export declare function useColumnValues(step: Step, table?: ColumnTable): Value[]; export declare function useHandleAddButtonClick(step: Step, values: Value[], onChange?: StepChangeFunction): () => void; export declare function useDisabled(step: Step, values: Value[]): boolean;