/** * It cast a variable to boolean * @param { string | number | boolean | any } variable Variable to cast * @returns {boolean} If the variable is a "true" or 1 it return true, otherwise it return false */ declare const castToBoolean: (variable: string | number | boolean | any) => boolean; export { castToBoolean };