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