/** The details of a transition status. */
export interface CreateWorkflowStatusDetails {
  /** The ID of the status. */
  id: string;
  /** The properties of the status. */
  properties?: unknown;
}
