/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { DataverseWorkflow } from '../services/index.js'; import type { ListFlowsContext } from '../Types/ActionTypes.js'; import type { Workflow } from '../Types/Workflow.types.js'; /** * Determines whether a flow is supported by Code Apps by inspecting its trigger kind. * Only flows with a PowerApp or PowerAppV2 manual trigger are supported. * * @param dataverseWorkflow The Dataverse workflow to check * @returns true if the flow has a supported trigger kind */ export declare function isSupportedCodeAppFlow(dataverseWorkflow: DataverseWorkflow): boolean; /** * Get all cloud flows from a Dataverse environment that are supported by Code Apps. * Only flows with a PowerApp or PowerAppV2 trigger are returned. * The org URL is derived from the environment ID in the context. * * @param {ListFlowsContext} context * @returns {Promise} */ export declare function listFlowsAsync(context: ListFlowsContext): Promise; //# sourceMappingURL=ListFlows.d.ts.map