/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { AddFlowContext } from '../Types/ActionTypes.js'; export type AddFlowResult = { success: boolean; error?: string; }; /** * Adds a flow by retrieving its metadata and swagger, updating the power.config file with the * appropriate connection references, and generating models and services from the flow's swagger. * * @param {AddFlowContext} context * @returns {Promise} */ export declare function addFlowAsync(context: AddFlowContext): Promise; //# sourceMappingURL=AddFlow.d.ts.map