/** A workflow transition rule. */
export interface CreateWorkflowTransitionRule {
  /** EXPERIMENTAL. The configuration of the transition rule. */
  configuration?: unknown;
  /** The type of the transition rule. */
  type: string;
}
