/**
 * Unity Boolean Like Type Declaration. This type declaration is used to
 * represent the boolean values `true` and `false` in the Unity Module.
 */
type UnityBooleanLike = 
/**
 * Represents the boolean value `false`.
 */
0
/**
 * Represents the boolean value `true`.
 */
 | 1;
export type { UnityBooleanLike };
//# sourceMappingURL=unity-boolean-like.d.ts.map