/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { Step, Workflow } from '@datashaper/workflow'; import { DisplayOrder } from '../../enums.js'; /** * Gets the workflow processing steps * @param workflow - the workflow instance * @returns */ export declare function useWorkflowSteps(workflow: Workflow, order?: DisplayOrder): Step[];