/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { Step, Workflow } from '@datashaper/workflow'; export declare function useHandleSaveClick(step: Step | undefined, onTransformRequested?: (step: Step) => void): (() => void) | undefined; export declare function useStepOutputHandling(workflow: Workflow, step: Step | undefined): { output: string | undefined; onOutputChanged: (name: string | undefined) => void; };