/** * Returns `true` if the value is a boolean primitive. * @param value The value to check. * * @example * ```typescript * isBooleanPrimitive(true); // => true * isBooleanPrimitive(false); // => true * isBooleanPrimitive(0); // => false * ``` */ declare const isBooleanPrimitive: (value: unknown) => value is boolean; export default isBooleanPrimitive; //# sourceMappingURL=isBooleanPrimitive.d.ts.map