//#region src/is-boolean.d.ts /** * Check if the provided value's type is `boolean` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `boolean` */ declare const isBoolean: (value: unknown) => value is boolean; //#endregion export { isBoolean }; //# sourceMappingURL=is-boolean.d.cts.map