import { Boolean } from './_Internal'; /** * Logical `!` operator (behaves like the JS one) * @param B to negate * @returns [[Boolean]] * @example * ```ts * import {B} from 'ts-toolbelt' * * type test0 = B.Not // False * type test1 = B.Not // True * ``` */ export declare type Not = { 0: 1; 1: 0; }[B];