/** * Returns true if the value is a boolean * * @since v0.0.1 * @category Type * @param {*} value - The value to check * @returns {boolean} */ export declare const isBoolean: (value: unknown) => boolean;