/** * Converts a value to a Boolean. * @param {any} value The Value to be converted to a Boolean. Valid values are: true, false, 'true' (case insensitive), 'false' (case insensitive), 1, 0, '1', '0' * @returns {boolean} If the Value is convertable to a Boolean it * is returned as a Boolean otherwise false is returned. * @since 1.0.0 */ export default function toBoolean(value: any): boolean; //# sourceMappingURL=toBoolean.d.ts.map