importRuntypefrom"./Runtype.js";
/**
* Validates that a value is a boolean.
*
* Possible failures:
*
* - `TYPE_INCORRECT` for non-booleans
*/interfaceBooleanextendsRuntype<boolean> {
tag: "boolean";
}
declareconstBoolean: Boolean;
exportdefaultBoolean;