/** A group label. */
export interface GroupLabel {
  /** The group label name. */
  text?: string;
  /** The title of the group label. */
  title?: string;
  /** The type of the group label. */
  type?: string;
}
