/** * It help you to know if a variable is a boolean * @param {boolean | any} variable variable that you want to know if it is a boolean * @returns {boolean} if it is a boolean it will return true otherwise false */ declare const isBoolean: (variable: boolean | any) => boolean; export { isBoolean };