import type { ItemRef } from "./ItemRef.js";
import type { ServiceModelProperties } from "./ServiceModelProperties.js";
/**
 * Configuration for the workflow events service. For internal use only.
 */
export interface WorkflowEventsProperties extends ServiceModelProperties {
    /**
     * An array of workflows to run when the app is launched. (Workflow[]).
     */
    workflows?: ItemRef[];
}
