import type { Assume, HKT1 } from './hkt.js'; export type Bool = boolean; export type True = true; export type False = false; export declare namespace Bool { type Not = B extends True ? False : True; interface Not$ extends HKT1 { new: (b: Assume) => Not; } } //# sourceMappingURL=bool.d.ts.map