import { Boolean } from './_Internal'; /** * Logical `^` operator (behaves like the JS one) * @param B1 Left-hand side * @param B2 Right-hand side * @returns [[Boolean]] * @example * ```ts * import {B} from 'ts-toolbelt' * * type test0 = B.Xor // False * type test1 = B.Xor // True * type test2 = B.Xor // Boolean * ``` */ export declare type Xor = { 0: { 0: 0; 1: 1; }; 1: { 0: 1; 1: 0; }; }[B1][B2];