import type { WorkflowModelProperties as CommonWorkflowModelProperties } from "../common/WorkflowModelProperties.js";
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
/**
 * @inheritdoc
 */
export interface WorkflowModelProperties extends CommonWorkflowModelProperties, ComponentModelProperties {
    /**
     * Whether or not the workflow should be executed asynchronously. If this
     * property is true, commands executing the workflow will not wait for it to
     * finish. Defaults to false.
     */
    async?: boolean;
}
