/**
 * Unity Boolean Like Type Declaration. This type declaration is used to
 * represent the boolean values `true` and `false` in the Unity Module.
 */
declare type UnityBooleanLike =
  /**
   * Represents the boolean value `false`.
   */
  | 0
  /**
   * Represents the boolean value `true`.
   */
  | 1;
