declare module "love.graphics" {
  /**
   * Text alignment.
   * @link [AlignMode](https://love2d.org/wiki/AlignMode)
   */
  type AlignMode = "center" | "left" | "right" | "justify";
}
